From 3378955681eacf6056c44173a044576379c5be08 Mon Sep 17 00:00:00 2001 From: Alex Ostrovski Date: Sat, 3 Feb 2024 12:40:25 +0200 Subject: [PATCH] Update CI config --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2682d0..f29565d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x, 20.x] + node-version: [18.x, 20.x, 21.x] steps: - uses: actions/checkout@v3 @@ -29,12 +29,12 @@ jobs: - run: npm run cover - name: Collect coverage - if: success() && startsWith(matrix.node-version, '18') + if: success() && startsWith(matrix.node-version, '20') run: | mkdir -p coverage && npm run cover:report --silent -- --reporter=text-lcov > ./coverage/lcov.info - name: Coveralls uses: coverallsapp/github-action@master - if: success() && startsWith(matrix.node-version, '18') + if: success() && startsWith(matrix.node-version, '20') with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -52,7 +52,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - run: npm ci - run: bash ./gh-pages.sh