From 118446e7cea115e1fa9c08c2bdfacf1e2b867e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Vlatkovi=C4=87?= <390700+ivandotv@users.noreply.github.com> Date: Fri, 16 Aug 2024 11:58:33 +0200 Subject: [PATCH] CI: test against node v21 --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2d6e181..748996a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['12', '14', '16'] + node: ['21'] steps: - name: Checkout uses: actions/checkout@v2 @@ -51,7 +51,7 @@ jobs: - name: Generate Code Coverage # only when running in node v16 - if: matrix.node == 16 + if: matrix.node == 21 uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }}