diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b446f5e..fb5ed45 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14, 16, 18, 20] + node-version: [14, 16, 18, 20, 22, 24] steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - name: Checkout + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: @@ -27,7 +28,7 @@ jobs: - name: Install Dependencies run: npm ci - name: Run linting checks - if: ${{ matrix.node-version == 18 }} + if: ${{ matrix.node-version == 20 }} run: npm run lint - name: Run tests run: npm run test