Skip to content

Commit 4e22c2e

Browse files
committed
Remove Node.js 16 from CI
Category: none
1 parent 2e7c40c commit 4e22c2e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: [16, 18, 20]
8+
# TODO (next major): officially drop node 16
9+
node: [18, 20, 22]
910
name: Node ${{ matrix.node }}
1011
steps:
1112
- name: Checkout
@@ -17,12 +18,12 @@ jobs:
1718
- name: Install
1819
run: npm install
1920
- name: Install Playwright
20-
if: matrix.node == 16
21+
if: matrix.node == 18
2122
run: npx playwright install --with-deps
2223
- name: Test
2324
run: npm test
2425
- name: Test browsers
25-
if: matrix.node == 16
26+
if: matrix.node == 18
2627
run: npm run test-browsers-local
2728
- name: Coverage
2829
run: npm run coverage

0 commit comments

Comments
 (0)