name: CI on: [push, pull_request] jobs: test: name: Test Node.js ${{ matrix.node-version }} runs-on: ubuntu-latest strategy: fail-fast: true matrix: node-version: - 18 - 22 steps: - name: Checkout uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v3 id: pnpm-install with: version: 9.12.2 run_install: false - name: Install Node.js uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile --strict-peer-dependencies - name: Run test run: pnpm test # TODO Enable those lines below if you use a Redis cache, you'll also need to configure GitHub Repository Secrets # env: # REDIS_HOST: ${{ secrets.REDIS_HOST }} # REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }} # - name: Build # run: pnpm build