diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdbe616..b7641f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,13 +10,17 @@ on: jobs: ci: + strategy: + fail-fast: false + matrix: + node-version: ['18.x', '20.x', 'lts/*'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - run: corepack enable - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: ${{ matrix.os }} cache: "pnpm" - run: pnpm install - run: pnpm lint