File tree Expand file tree Collapse file tree 3 files changed +26
-28
lines changed Expand file tree Collapse file tree 3 files changed +26
-28
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,13 @@ jobs:
12
12
timeout-minutes : 30
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - run : npx prettier --check "{src,typescript}/**/*.ts" --ignore-path .gitignore
16
- - name : Cache pnpm modules
17
- uses : actions/cache@v2
15
+ - uses : actions/setup-node@v3
18
16
with :
19
- path : ~/.pnpm-store
20
- key : ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
21
- restore-keys : |
22
- ${{ runner.os }}-
23
-
17
+ node-version : ' 22.x'
18
+ registry-url : ' https://registry.npmjs.org'
19
+ - run : npx prettier --check "{src,typescript}/**/*.ts" --ignore-path .gitignore
20
+ - uses : pnpm/action-setup@v4
24
21
with :
25
- version : latest
26
22
run_install : |
27
23
args: [--frozen-lockfile, --strict-peer-dependencies]
28
24
- run : pnpm lint
Original file line number Diff line number Diff line change @@ -10,23 +10,15 @@ jobs:
10
10
timeout-minutes : 30
11
11
# needs: test
12
12
steps :
13
- - name : Setup Node.js
14
- uses : actions/setup-node@v3
13
+ - uses : actions/setup-node@v3
15
14
with :
16
- node-version : 20
15
+ node-version : ' 22.x'
16
+ registry-url : ' https://registry.npmjs.org'
17
17
- run : npm -v
18
18
- run : node -v
19
19
- uses : actions/checkout@v2
20
- - name : Cache pnpm modules
21
- uses : actions/cache@v2
20
+ - uses : pnpm/action-setup@v4
22
21
with :
23
- path : ~/.pnpm-store
24
- key : ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
25
- restore-keys : |
26
- ${{ runner.os }}-
27
-
28
- with :
29
- version : latest
30
22
run_install : |
31
23
args: [--frozen-lockfile, --strict-peer-dependencies]
32
24
- run : pnpx zardoy-release vscode-extension
Original file line number Diff line number Diff line change 148
148
"@types/vscode" : " 1.72.0" ,
149
149
"@vitest/ui" : " ^0.34.6" ,
150
150
"@zardoy/tsconfig" : " ^1.3.1" ,
151
+ "chokidar" : " ^3.5.3" ,
152
+ "chokidar-cli" : " ^3.0.0" ,
151
153
"esbuild" : " ^0.16.16" ,
152
154
"fs-extra" : " ^10.1.0" ,
153
155
"got" : " ^12.5.3" ,
154
156
"got-cjs" : " npm:got@^11.x" ,
157
+ "npm-run-all" : " ^4.1.5" ,
155
158
"prettier" : " 3.1.0" ,
156
159
"tsm" : " ^2.3.0" ,
157
160
"type-fest" : " ^2.13.1" ,
160
163
"vite" : " ^4.1.1" ,
161
164
"vitest" : " ^0.34.6" ,
162
165
"vitest-environment-ts-plugin" : " ./vitest-environment-ts-plugin" ,
163
- "vscode-manifest" : " ^0.0.4" ,
164
- "chokidar" : " ^3.5.3" ,
165
- "chokidar-cli" : " ^3.0.0" ,
166
- "npm-run-all" : " ^4.1.5"
166
+ "vscode-manifest" : " ^0.0.4"
167
167
},
168
168
"pnpm" : {
169
169
"overrides" : {
170
170
"esbuild" : " ^0.15.15"
171
- }
171
+ },
172
+ "ignoredBuiltDependencies" : [
173
+ " playwright"
174
+ ],
175
+ "onlyBuiltDependencies" : [
176
+ " esbuild" ,
177
+ " typed-vscode" ,
178
+ " unleashed-typescript" ,
179
+ " vscode-framework"
180
+ ]
172
181
},
173
182
"dependencies" : {
174
183
"@types/chai" : " ^4.3.3" ,
220
229
"preset" : {
221
230
"runTest" : false
222
231
}
223
- }
224
- }
232
+ },
233
+ "packageManager" :
" [email protected] +sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
234
+ }
You can’t perform that action at this time.
0 commit comments