diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2a33c51..dd98703f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,14 @@ jobs: lint: runs-on: ubuntu-latest if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) + strategy: + matrix: + node: [20, 22, 24] + name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: ${{ matrix.node }} - run: yarn - run: yarn lint