From 332e8ec64e19eb1837bebad943f0771615ce3bc7 Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Sat, 21 Dec 2024 19:02:40 +0100 Subject: [PATCH] Remove Node.js 16 from CI Category: none --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e0a046..8aff810 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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