File tree Expand file tree Collapse file tree 4 files changed +4098
-9220
lines changed Expand file tree Collapse file tree 4 files changed +4098
-9220
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,22 @@ jobs:
16
16
with :
17
17
show-progress : false
18
18
19
+ - name : 📦 Setup PNPM
20
+ uses : pnpm/action-setup@v4
21
+ with :
22
+ version : latest
23
+
19
24
- name : ⎔ Setup Node.js
20
25
uses : actions/setup-node@v4
21
26
with :
22
27
node-version : lts/*
23
- cache : npm
28
+ cache : pnpm
24
29
25
30
- name : 📥 Download dependencies
26
- run : npm ci
31
+ run : pnpm install
27
32
28
33
- name : 🧵 Lint
29
- run : npm run lint
34
+ run : pnpm run lint
30
35
31
36
test-unit :
32
37
name : Unit tests
@@ -37,17 +42,22 @@ jobs:
37
42
with :
38
43
show-progress : false
39
44
45
+ - name : 📦 Setup PNPM
46
+ uses : pnpm/action-setup@v4
47
+ with :
48
+ version : latest
49
+
40
50
- name : ⎔ Setup Node.js
41
51
uses : actions/setup-node@v4
42
52
with :
43
53
node-version : lts/*
44
- cache : npm
54
+ cache : pnpm
45
55
46
56
- name : 📥 Download dependencies
47
- run : npm ci
57
+ run : pnpm install
48
58
49
59
- name : 🧪 Run tests
50
- run : npm test
60
+ run : pnpm test
51
61
52
62
build :
53
63
name : Commit Release Assets
@@ -70,14 +80,19 @@ jobs:
70
80
ref : ${{ github.head_ref }}
71
81
token : ${{ steps.generate_token.outputs.token }}
72
82
83
+ - name : 📦 Setup PNPM
84
+ uses : pnpm/action-setup@v4
85
+ with :
86
+ version : latest
87
+
73
88
- name : ⎔ Setup Node.js
74
89
uses : actions/setup-node@v4
75
90
with :
76
91
node-version : lts/*
77
- cache : npm
92
+ cache : pnpm
78
93
79
94
- name : 📥 Download dependencies
80
- run : npm ci
95
+ run : pnpm install
81
96
82
97
- name : 🏗️ Commit and push if needed
83
98
run : |
You can’t perform that action at this time.
0 commit comments