Skip to content

Commit 1fe442d

Browse files
authored
ci(github-actions): support node v20 (#903)
1 parent 7141588 commit 1fe442d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Use Node.js 18.x
12+
- name: Use Node.js 20.x
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18.x
15+
node-version: 20.x
1616

1717
- uses: actions/cache@v3
1818
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
@@ -38,7 +38,7 @@ jobs:
3838

3939
strategy:
4040
matrix:
41-
node-version: [14.x, 16.x, 18.x]
41+
node-version: [14.x, 16.x, 18.x, 20.x]
4242

4343
steps:
4444
- uses: actions/checkout@v3
@@ -71,10 +71,10 @@ jobs:
7171

7272
steps:
7373
- uses: actions/checkout@v3
74-
- name: Use Node.js 18.x
74+
- name: Use Node.js 20.x
7575
uses: actions/setup-node@v3
7676
with:
77-
node-version: 18.x
77+
node-version: 20.x
7878

7979
- uses: actions/cache@v3
8080
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)

0 commit comments

Comments
 (0)