Skip to content

Commit 4ceca0b

Browse files
committed
Fix ci
1 parent 1a39182 commit 4ceca0b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77
pull_request:
88

99
permissions:
@@ -17,12 +17,15 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20+
- uses: pnpm/action-setup@v2
21+
with:
22+
version: 8
2023
# Cache node_modules
2124
- uses: actions/setup-node@v3
2225
with:
2326
node-version: 20
24-
cache: 'npm'
25-
- run: npm ci
27+
cache: 'pnpm'
28+
- run: pnpm install
2629
- uses: nrwl/nx-set-shas@v4
2730

2831
# Uncomment to enable task distribution. --stop-agents-after is optional, but allows idle agents to shut down once the "build" targets have been requested

0 commit comments

Comments
 (0)