You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ name: CI
3
3
on:
4
4
push:
5
5
branches:
6
-
- main
6
+
- master
7
7
pull_request:
8
8
9
9
permissions:
@@ -17,12 +17,15 @@ jobs:
17
17
- uses: actions/checkout@v4
18
18
with:
19
19
fetch-depth: 0
20
+
- uses: pnpm/action-setup@v2
21
+
with:
22
+
version: 8
20
23
# Cache node_modules
21
24
- uses: actions/setup-node@v3
22
25
with:
23
26
node-version: 20
24
-
cache: 'npm'
25
-
- run: npm ci
27
+
cache: 'pnpm'
28
+
- run: pnpm install
26
29
- uses: nrwl/nx-set-shas@v4
27
30
28
31
# 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