Skip to content

Commit a517d88

Browse files
committed
chore: update bun install command to ignore scripts in CI and release workflows
1 parent 8e6fe92 commit a517d88

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
16-
- run: bun install --frozen-lockfile
16+
- run: bun install --frozen-lockfile --ignore-scripts
1717
- run: bun run lint
1818
- run: bun run typecheck

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
node-version: 20
3232
- run: npm install -g npm@latest
33-
- run: bun install --frozen-lockfile
33+
- run: bun install --frozen-lockfile --ignore-scripts
3434
- name: Configure Git
3535
run: |
3636
git config user.name "${GITHUB_ACTOR}"

0 commit comments

Comments
 (0)