Skip to content

Commit f695b26

Browse files
author
mike dupont
committed
update github actions
1 parent 0df88f1 commit f695b26

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

.github/workflows/build-action.yml

+35-35
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
chunk_count: 8 # This is hardcoded to 8, but it can be changed to any number.
1616
steps:
1717
- name: Checkout repository with submodules
18-
uses: actions/checkout@v4
18+
uses: meta-introspector/checkout@v4
1919
with:
2020
submodules: recursive
2121

2222
- name: Setup Node
23-
uses: actions/setup-node@v4
23+
uses: meta-introspector/setup-node@v4
2424
with:
2525
node-version: '18'
2626

2727
- name: Cache dependencies and build
28-
uses: actions/cache@v4
28+
uses: meta-introspector/cache@v4
2929
id: cache
3030
with:
3131
path: |
@@ -48,7 +48,7 @@ jobs:
4848
echo "Total test count: ${TEST_COUNT}"
4949
5050
- name: Cache repository
51-
uses: actions/cache@v4
51+
uses: meta-introspector/cache@v4
5252
with:
5353
path: .
5454
key: repo-${{ github.sha }}
@@ -72,18 +72,18 @@ jobs:
7272
]
7373
steps:
7474
- name: Restore repository
75-
uses: actions/cache@v4
75+
uses: meta-introspector/cache@v4
7676
with:
7777
path: .
7878
key: repo-${{ github.sha }}
7979

8080
- name: Setup Node
81-
uses: actions/setup-node@v4
81+
uses: meta-introspector/setup-node@v4
8282
with:
8383
node-version: '18'
8484

8585
- name: Restore cache
86-
uses: actions/cache@v4
86+
uses: meta-introspector/cache@v4
8787
with:
8888
path: |
8989
~/.npm
@@ -116,18 +116,18 @@ jobs:
116116
chunk: [1, 2, 3, 4, 5, 6, 7, 8]
117117
steps:
118118
- name: Restore repository
119-
uses: actions/cache@v4
119+
uses: meta-introspector/cache@v4
120120
with:
121121
path: .
122122
key: repo-${{ github.sha }}
123123

124124
- name: Setup Node
125-
uses: actions/setup-node@v4
125+
uses: meta-introspector/setup-node@v4
126126
with:
127127
node-version: '18'
128128

129129
- name: Restore cache
130-
uses: actions/cache@v4
130+
uses: meta-introspector/cache@v4
131131
with:
132132
path: |
133133
~/.npm
@@ -169,7 +169,7 @@ jobs:
169169

170170
- name: Upload test results
171171
if: always()
172-
uses: actions/upload-artifact@v4
172+
uses: meta-introspector/upload-artifact@v4
173173
with:
174174
name: test-results-${{ matrix.chunk }}
175175
path: profiling.md
@@ -193,24 +193,24 @@ jobs:
193193
runs-on: ubuntu-latest
194194
steps:
195195
- name: Restore repository
196-
uses: actions/cache@v4
196+
uses: meta-introspector/cache@v4
197197
with:
198198
path: .
199199
key: repo-${{ github.sha }}
200200

201201
- name: Setup Node
202-
uses: actions/setup-node@v4
202+
uses: meta-introspector/setup-node@v4
203203
with:
204204
node-version: '18'
205205

206206
- name: Restore npm cache
207-
uses: actions/cache@v4
207+
uses: meta-introspector/cache@v4
208208
with:
209209
path: ~/.npm
210210
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
211211

212212
- name: Cache Playwright browsers
213-
uses: actions/cache@v4
213+
uses: meta-introspector/cache@v4
214214
id: playwright-cache
215215
with:
216216
path: ~/.cache/ms-playwright
@@ -229,7 +229,7 @@ jobs:
229229
run: npm run test:e2e
230230

231231
- name: Upload E2E test artifacts
232-
uses: actions/upload-artifact@v4
232+
uses: meta-introspector/upload-artifact@v4
233233
continue-on-error: true
234234
if: always()
235235
with:
@@ -245,13 +245,13 @@ jobs:
245245
needs: [Build-And-Test-Server, Run-Unit-Tests, Build-And-Test-Web]
246246
steps:
247247
- name: Restore repository
248-
uses: actions/cache@v4
248+
uses: meta-introspector/cache@v4
249249
with:
250250
path: .
251251
key: repo-${{ github.sha }}
252252

253253
- name: Setup Node
254-
uses: actions/setup-node@v4
254+
uses: meta-introspector/setup-node@v4
255255
with:
256256
node-version: '18'
257257

@@ -260,13 +260,13 @@ jobs:
260260
npm ci
261261
npm run prepublishOnly
262262
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 }}
270270

271271
Release-mina-signer-on-NPM:
272272
if: github.ref == 'refs/heads/main'
@@ -275,13 +275,13 @@ jobs:
275275
needs: [Build-And-Test-Server, Run-Unit-Tests, Build-And-Test-Web]
276276
steps:
277277
- name: Restore repository
278-
uses: actions/cache@v4
278+
uses: meta-introspector/cache@v4
279279
with:
280280
path: .
281281
key: repo-${{ github.sha }}
282282

283283
- name: Setup Node
284-
uses: actions/setup-node@v4
284+
uses: meta-introspector/setup-node@v4
285285
with:
286286
node-version: '18'
287287

@@ -292,11 +292,11 @@ jobs:
292292
npm ci
293293
npm run prepublishOnly
294294
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

Comments
 (0)