aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-24 01:35:50 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-24 01:35:50 +0100
commitcec63c7799240221ce7da88dd80ed0b27173282f (patch)
tree5fe3a903787a3ad4e1ccb578dd59a239d33e5937 /.github
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-cec63c7799240221ce7da88dd80ed0b27173282f.tar.gz
ferdium-app-cec63c7799240221ce7da88dd80ed0b27173282f.tar.zst
ferdium-app-cec63c7799240221ce7da88dd80ed0b27173282f.zip
Retry npm i on windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 3f356e1e0..18aac81f8 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -328,8 +328,12 @@ jobs:
328 with: 328 with:
329 version: 6.23.6 329 version: 6.23.6
330 - name: Install node dependencies 330 - name: Install node dependencies
331 run: npm i 331 uses: nick-invision/retry@v2.4.0
332 shell: bash 332 with:
333 command: npm i
334 timeout_minutes: 15
335 max_attempts: 3
336 retry_on: error
333 - name: Package recipes 337 - name: Package recipes
334 run: pnpm i && pnpm run package 338 run: pnpm i && pnpm run package
335 working-directory: ./recipes 339 working-directory: ./recipes