fix: add retry 3 to bun install steps
Pull Request / unit-tests (pull_request) Successful in 1m29s
Pull Request / analyze-bump-type (pull_request) Successful in 19s
Pull Request / build-and-deploy-ci (pull_request) Failing after 4m20s

Transient tarball extraction failures from npm registry hit bun
install intermittently. --retry 3 makes bun retry failed
downloads/extractions automatically.
This commit is contained in:
2026-05-17 02:44:32 -07:00
parent b3ba4b5a8c
commit 90ecbb6fba
+2 -2
View File
@@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install --retry 3
- name: Generate Prisma client - name: Generate Prisma client
run: bun x prisma generate run: bun x prisma generate
@@ -45,7 +45,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install --retry 3
- name: Generate Prisma client - name: Generate Prisma client
run: bun x prisma generate run: bun x prisma generate