diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c14992e..1e0f407 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [20.x, 22.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ defaults: run: @@ -27,7 +27,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: 'npm' + cache: 'pnpm' cache-dependency-path: './pnpm-lock.yaml' - - run: npm ci - - run: npm test + - run: pnpm install + - run: pnpm test