We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e42a4d commit 8a88ff3Copy full SHA for 8a88ff3
1 file changed
.github/workflows/ci.yml
@@ -15,14 +15,19 @@ jobs:
15
with:
16
ref: ${{ github.head_ref || github.ref_name }}
17
18
+ - name: Setup pnpm
19
+ uses: pnpm/action-setup@v4
20
+ with:
21
+ version: 10
22
+
23
- name: Setup Node.js
24
uses: actions/setup-node@v4
25
26
node-version: 20
- cache: npm
27
+ cache: pnpm
28
29
- name: Install dependencies
- run: npm ci
30
+ run: pnpm install --frozen-lockfile
31
32
- name: Apply Biome autofixes
33
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
0 commit comments