We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87d23a9 commit 7615553Copy full SHA for 7615553
1 file changed
.github/workflows/ci.yml
@@ -26,12 +26,10 @@ jobs:
26
uses: actions/setup-node@v4
27
with:
28
node-version: ${{ matrix.node-version }}
29
- cache: 'yarn'
+ cache: 'pnpm'
30
31
- - run: yarn install --frozen-lockfile --non-interactive
+ - run: pnpm install
32
33
- - run: yarn lint
+ - run: pnpm lint
34
35
- - run: yarn update && git diff --exit-code
36
-
37
- - run: yarn test:coverage --runInBand
+ - run: pnpm test:coverage --runInBand
0 commit comments