Skip to content

Commit 1d7f6da

Browse files
committed
run CI on node 17
1 parent 1992e9c commit 1d7f6da

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Use Node.js
2222
uses: actions/setup-node@v2
2323
with:
24-
node-version: 16.x
25-
cache: 'yarn'
24+
node-version: 17.x
25+
cache: "yarn"
2626
- run: yarn --frozen-lockfile
2727
- uses: actions/cache@v1
2828
with:
@@ -37,8 +37,8 @@ jobs:
3737
- name: Use Node.js
3838
uses: actions/setup-node@v2
3939
with:
40-
node-version: 16.x
41-
cache: 'yarn'
40+
node-version: 17.x
41+
cache: "yarn"
4242
- run: yarn --frozen-lockfile
4343
- run: yarn link --frozen-lockfile || true
4444
- run: yarn link webpack --frozen-lockfile
@@ -54,8 +54,8 @@ jobs:
5454
- name: Use Node.js
5555
uses: actions/setup-node@v2
5656
with:
57-
node-version: 16.x
58-
cache: 'yarn'
57+
node-version: 17.x
58+
cache: "yarn"
5959
- run: yarn --frozen-lockfile
6060
- run: yarn link --frozen-lockfile || true
6161
- run: yarn link webpack --frozen-lockfile
@@ -75,9 +75,12 @@ jobs:
7575
fail-fast: false
7676
matrix:
7777
os: [ubuntu-latest, windows-latest, macos-latest]
78-
node-version: [10.x, 16.x]
78+
node-version: [10.x, 17.x]
7979
part: [a, b]
8080
include:
81+
- os: ubuntu-latest
82+
node-version: 16.x
83+
part: a
8184
- os: ubuntu-latest
8285
node-version: 14.x
8386
part: a
@@ -91,7 +94,7 @@ jobs:
9194
uses: actions/setup-node@v2
9295
with:
9396
node-version: ${{ matrix.node-version }}
94-
cache: 'yarn'
97+
cache: "yarn"
9598
- run: yarn --frozen-lockfile
9699
- run: yarn link --frozen-lockfile || true
97100
- run: yarn link webpack --frozen-lockfile

0 commit comments

Comments
 (0)