@@ -15,17 +15,17 @@ jobs:
15
15
chunk_count : 8 # This is hardcoded to 8, but it can be changed to any number.
16
16
steps :
17
17
- name : Checkout repository with submodules
18
- uses : actions /checkout@v4
18
+ uses : meta-introspector /checkout@v4
19
19
with :
20
20
submodules : recursive
21
21
22
22
- name : Setup Node
23
- uses : actions /setup-node@v4
23
+ uses : meta-introspector /setup-node@v4
24
24
with :
25
25
node-version : ' 18'
26
26
27
27
- name : Cache dependencies and build
28
- uses : actions /cache@v4
28
+ uses : meta-introspector /cache@v4
29
29
id : cache
30
30
with :
31
31
path : |
48
48
echo "Total test count: ${TEST_COUNT}"
49
49
50
50
- name : Cache repository
51
- uses : actions /cache@v4
51
+ uses : meta-introspector /cache@v4
52
52
with :
53
53
path : .
54
54
key : repo-${{ github.sha }}
@@ -72,18 +72,18 @@ jobs:
72
72
]
73
73
steps :
74
74
- name : Restore repository
75
- uses : actions /cache@v4
75
+ uses : meta-introspector /cache@v4
76
76
with :
77
77
path : .
78
78
key : repo-${{ github.sha }}
79
79
80
80
- name : Setup Node
81
- uses : actions /setup-node@v4
81
+ uses : meta-introspector /setup-node@v4
82
82
with :
83
83
node-version : ' 18'
84
84
85
85
- name : Restore cache
86
- uses : actions /cache@v4
86
+ uses : meta-introspector /cache@v4
87
87
with :
88
88
path : |
89
89
~/.npm
@@ -116,18 +116,18 @@ jobs:
116
116
chunk : [1, 2, 3, 4, 5, 6, 7, 8]
117
117
steps :
118
118
- name : Restore repository
119
- uses : actions /cache@v4
119
+ uses : meta-introspector /cache@v4
120
120
with :
121
121
path : .
122
122
key : repo-${{ github.sha }}
123
123
124
124
- name : Setup Node
125
- uses : actions /setup-node@v4
125
+ uses : meta-introspector /setup-node@v4
126
126
with :
127
127
node-version : ' 18'
128
128
129
129
- name : Restore cache
130
- uses : actions /cache@v4
130
+ uses : meta-introspector /cache@v4
131
131
with :
132
132
path : |
133
133
~/.npm
@@ -169,7 +169,7 @@ jobs:
169
169
170
170
- name : Upload test results
171
171
if : always()
172
- uses : actions /upload-artifact@v4
172
+ uses : meta-introspector /upload-artifact@v4
173
173
with :
174
174
name : test-results-${{ matrix.chunk }}
175
175
path : profiling.md
@@ -193,24 +193,24 @@ jobs:
193
193
runs-on : ubuntu-latest
194
194
steps :
195
195
- name : Restore repository
196
- uses : actions /cache@v4
196
+ uses : meta-introspector /cache@v4
197
197
with :
198
198
path : .
199
199
key : repo-${{ github.sha }}
200
200
201
201
- name : Setup Node
202
- uses : actions /setup-node@v4
202
+ uses : meta-introspector /setup-node@v4
203
203
with :
204
204
node-version : ' 18'
205
205
206
206
- name : Restore npm cache
207
- uses : actions /cache@v4
207
+ uses : meta-introspector /cache@v4
208
208
with :
209
209
path : ~/.npm
210
210
key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
211
211
212
212
- name : Cache Playwright browsers
213
- uses : actions /cache@v4
213
+ uses : meta-introspector /cache@v4
214
214
id : playwright-cache
215
215
with :
216
216
path : ~/.cache/ms-playwright
@@ -229,7 +229,7 @@ jobs:
229
229
run : npm run test:e2e
230
230
231
231
- name : Upload E2E test artifacts
232
- uses : actions /upload-artifact@v4
232
+ uses : meta-introspector /upload-artifact@v4
233
233
continue-on-error : true
234
234
if : always()
235
235
with :
@@ -245,13 +245,13 @@ jobs:
245
245
needs : [Build-And-Test-Server, Run-Unit-Tests, Build-And-Test-Web]
246
246
steps :
247
247
- name : Restore repository
248
- uses : actions /cache@v4
248
+ uses : meta-introspector /cache@v4
249
249
with :
250
250
path : .
251
251
key : repo-${{ github.sha }}
252
252
253
253
- name : Setup Node
254
- uses : actions /setup-node@v4
254
+ uses : meta-introspector /setup-node@v4
255
255
with :
256
256
node-version : ' 18'
257
257
@@ -260,13 +260,13 @@ jobs:
260
260
npm ci
261
261
npm run prepublishOnly
262
262
263
- - name : Publish to NPM if version has changed
264
- uses : JS-DevTools/npm-publish@v3
265
- with :
266
- token : ${{ secrets.NPM_TOKEN }}
267
- strategy : upgrade
268
- env :
269
- INPUT_TOKEN : ${{ secrets.NPM_TOKEN }}
263
+ # - name: Publish to NPM if version has changed
264
+ # uses: JS-DevTools/npm-publish@v3
265
+ # with:
266
+ # token: ${{ secrets.NPM_TOKEN }}
267
+ # strategy: upgrade
268
+ # env:
269
+ # INPUT_TOKEN: ${{ secrets.NPM_TOKEN }}
270
270
271
271
Release-mina-signer-on-NPM :
272
272
if : github.ref == 'refs/heads/main'
@@ -275,13 +275,13 @@ jobs:
275
275
needs : [Build-And-Test-Server, Run-Unit-Tests, Build-And-Test-Web]
276
276
steps :
277
277
- name : Restore repository
278
- uses : actions /cache@v4
278
+ uses : meta-introspector /cache@v4
279
279
with :
280
280
path : .
281
281
key : repo-${{ github.sha }}
282
282
283
283
- name : Setup Node
284
- uses : actions /setup-node@v4
284
+ uses : meta-introspector /setup-node@v4
285
285
with :
286
286
node-version : ' 18'
287
287
@@ -292,11 +292,11 @@ jobs:
292
292
npm ci
293
293
npm run prepublishOnly
294
294
295
- - name : Publish to NPM if version has changed
296
- uses : JS-DevTools/npm-publish@v3
297
- with :
298
- token : ${{ secrets.NPM_TOKEN }}
299
- package : ' ./src/mina-signer/package.json'
300
- strategy : upgrade
301
- env :
302
- INPUT_TOKEN : ${{ secrets.NPM_TOKEN }}
295
+ # - name: Publish to NPM if version has changed
296
+ # uses: JS-DevTools/npm-publish@v3
297
+ # with:
298
+ # token: ${{ secrets.NPM_TOKEN }}
299
+ # package: './src/mina-signer/package.json'
300
+ # strategy: upgrade
301
+ # env:
302
+ # INPUT_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments