File tree Expand file tree Collapse file tree 5 files changed +13675
-9371
lines changed Expand file tree Collapse file tree 5 files changed +13675
-9371
lines changed Original file line number Diff line number Diff line change 22
22
run : |
23
23
echo "Node version: $(which node):$(node -v)"
24
24
echo "NPM version: $(which npm):$(npm -v)"
25
- - name : Install PNPM
26
- run : volta install pnpm
27
- - name : PNPM Version
28
- run : |
29
- echo "PNPM version: $(which pnpm):$(pnpm -v)"
30
25
31
26
Build :
32
27
needs : [Setup]
@@ -39,18 +34,16 @@ jobs:
39
34
token : ${{ secrets.GITHUB_TOKEN }}
40
35
- uses : actions/cache@v4
41
36
with :
42
- path : ~/.pnpm-store
43
- key : pnpm -install-v3-${{ hashFiles('**/pnpm -lock.yaml ') }}
37
+ path : ~/.npm
38
+ key : npm -install-v3-${{ hashFiles('**/package -lock.json ') }}
44
39
restore-keys : |
45
- pnpm-install-v3-
46
- - name : Install PNPM
47
- run : volta install pnpm
40
+ npm-install-v3-
48
41
- name : Install Dependencies
49
- run : pnpm install
42
+ run : npm ci
50
43
- name : Lint
51
- run : pnpm lint
44
+ run : npm run lint
52
45
- name : Build
53
- run : pnpm build
46
+ run : npm run build
54
47
- if : github.event_name == 'push'
55
48
uses : actions/upload-artifact@v4
56
49
with :
Original file line number Diff line number Diff line change 1
- shamefully-hoist = true
1
+ prefer-dedupe
2
+ legacy-peer-deps
You can’t perform that action at this time.
0 commit comments