diff --git a/.github/workflows/testing-node.js.yml b/.github/workflows/testing-node.js.yml index b28a63a..eba68c4 100644 --- a/.github/workflows/testing-node.js.yml +++ b/.github/workflows/testing-node.js.yml @@ -12,19 +12,19 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 22.x, 24.x] + node-version: [20.x, 22.x, 24.x] os: [macOS-latest, windows-latest, ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run test:ci - name: Archive Unit Test Code Coverage Results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: code-coverage-report ${{ matrix.node-version }} ${{ matrix.os }} + name: code-coverage-report-${{ matrix.node-version }}-${{ matrix.os }} path: test/reports/unit/lcov-report