Skip to content

Commit 5929519

Browse files
committed
Add node 20.x to build matrix
1 parent 18e0b05 commit 5929519

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: ['16.x', '18.x']
16+
node-version: ['16.x', '18.x', '20.x']
1717

1818
steps:
1919
- name: Checkout
@@ -34,15 +34,15 @@ jobs:
3434
env:
3535
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
3636
- name: Lint
37-
if: matrix.node-version == '16.x'
37+
if: matrix.node-version == '20.x'
3838
run: npm run lint
3939
- name: Prettier
40-
if: matrix.node-version == '16.x'
40+
if: matrix.node-version == '20.x'
4141
run: npm run prettier:check
4242
- name: Test Node
4343
run: npm run test:node
4444
- name: Test Browser
45-
if: matrix.node-version == '16.x'
45+
if: matrix.node-version == '20.x'
4646
run: |
4747
export PUPPETEER_EXECUTABLE_PATH=$(which google-chrome-stable)
4848
npm run test:browser

0 commit comments

Comments
 (0)