From 1d7f6da4162f23995c8a5baf88ba9f5f73b33c76 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 29 Oct 2021 14:33:38 +0200 Subject: [PATCH] run CI on node 17 --- .github/workflows/test.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc7076f6d..c146ff1a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,8 +21,8 @@ jobs: - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: 16.x - cache: 'yarn' + node-version: 17.x + cache: "yarn" - run: yarn --frozen-lockfile - uses: actions/cache@v1 with: @@ -37,8 +37,8 @@ jobs: - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: 16.x - cache: 'yarn' + node-version: 17.x + cache: "yarn" - run: yarn --frozen-lockfile - run: yarn link --frozen-lockfile || true - run: yarn link webpack --frozen-lockfile @@ -54,8 +54,8 @@ jobs: - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: 16.x - cache: 'yarn' + node-version: 17.x + cache: "yarn" - run: yarn --frozen-lockfile - run: yarn link --frozen-lockfile || true - run: yarn link webpack --frozen-lockfile @@ -75,9 +75,12 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [10.x, 16.x] + node-version: [10.x, 17.x] part: [a, b] include: + - os: ubuntu-latest + node-version: 16.x + part: a - os: ubuntu-latest node-version: 14.x part: a @@ -91,7 +94,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - cache: 'yarn' + cache: "yarn" - run: yarn --frozen-lockfile - run: yarn link --frozen-lockfile || true - run: yarn link webpack --frozen-lockfile