Skip to content

Commit a92c514

Browse files
committed
chore: update bun install commands to ignore scripts in workflows
1 parent f27ef54 commit a92c514

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/changeset-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
bun-version: latest
3131

3232
- name: Install Dependencies
33-
run: bun install
33+
run: bun install --ignore-scripts
3434

3535
- name: Create PR or Publish
3636
id: changesets

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- '**/node_modules/**'
4444
4545
- name: Install Dependencies
46-
run: bun install
46+
run: bun install --ignore-scripts
4747

4848
- name: Perform CodeQL Analysis
4949
uses: github/codeql-action/analyze@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bun-version: latest
1919

2020
- name: Install Dependencies
21-
run: bun install
21+
run: bun install --ignore-scripts
2222

2323
- name: Syncpack Check
2424
run: bunx syncpack list-mismatches

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
bun-version: latest
2121

2222
- name: Install dependencies
23-
run: bun install
23+
run: bun install --ignore-scripts
2424

2525
- name: Run tests with coverage
2626
run: bun test --coverage --coverage-reporter=lcov --coverage-dir=./coverage

0 commit comments

Comments
 (0)