We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7c40c commit 4e22c2eCopy full SHA for 4e22c2e
.github/workflows/test.yml
@@ -5,7 +5,8 @@ jobs:
5
runs-on: ubuntu-latest
6
strategy:
7
matrix:
8
- node: [16, 18, 20]
+ # TODO (next major): officially drop node 16
9
+ node: [18, 20, 22]
10
name: Node ${{ matrix.node }}
11
steps:
12
- name: Checkout
@@ -17,12 +18,12 @@ jobs:
17
18
- name: Install
19
run: npm install
20
- name: Install Playwright
- if: matrix.node == 16
21
+ if: matrix.node == 18
22
run: npx playwright install --with-deps
23
- name: Test
24
run: npm test
25
- name: Test browsers
26
27
run: npm run test-browsers-local
28
- name: Coverage
29
run: npm run coverage
0 commit comments