Skip to content

Commit

Permalink
Remove Node.js 16 from CI
Browse files Browse the repository at this point in the history
Category: none
  • Loading branch information
vweevers committed Dec 21, 2024
1 parent bdd1ebe commit 332e8ec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
# TODO (next major): officially drop node 16
node: [18, 20, 22]
name: Node ${{ matrix.node }}
steps:
- name: Checkout
Expand All @@ -17,12 +18,12 @@ jobs:
- name: Install
run: npm install
- name: Install Playwright
if: matrix.node == 16
if: matrix.node == 18
run: npx playwright install --with-deps
- name: Test
run: npm test
- name: Test browsers
if: matrix.node == 16
if: matrix.node == 18
run: npm run test-browsers-local
- name: Coverage
run: npm run coverage
Expand Down

0 comments on commit 332e8ec

Please sign in to comment.