Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- run: npm install -g npm@latest

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: npm run compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundler-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: 24
- run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
run: npm ci --ignore-scripts
- name: Build TypeScript packages
run: npm run compile
- name: Run bundler tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-or-update-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
node-version: 22
- run: npm install -g npm@latest

- run: npm ci
- run: npm ci --ignore-scripts

- name: Create/Update Release PR
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Install and Build 🔧
run: |
npm ci
npm ci --ignore-scripts
npm run compile

- name: Build Docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
}}

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: npm run compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: '22'

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Lint
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- run: npm install -g npm@latest

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Generate SBOM for core packages
if: ${{ ! startsWith(github.ref, 'refs/tags/experimental') && ! startsWith(github.ref, 'refs/tags/api') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
}}

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: npm run compile
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- run: npm install -g npm@latest

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: |
Expand All @@ -111,7 +111,7 @@ jobs:
node-version: 22

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: npm run compile
Expand All @@ -137,7 +137,7 @@ jobs:
node-version: 22

- name: Bootstrap
run: npm ci
run: npm ci --ignore-scripts

- name: Build 🔧
run: npm run compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/w3c-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: 22

- name: Install and Bootstrap 🔧
run: npm ci
run: npm ci --ignore-scripts

- name: Generate version.ts files
run: npm run version:update
Expand Down