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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm ci --ignore-scripts
- name: Lint
run: |
npm run lint
2 changes: 1 addition & 1 deletion .github/workflows/peer-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v5

- name: Install script dependencies
run: npm ci
run: npm ci --ignore-scripts

- name: Check API dependency semantics
run: node ./scripts/peer-api-check.js
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Install packages
run: |
npm ci
npm ci --ignore-scripts

- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
id: otelbot-token
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
# Require npm 11.5.1 or later for https://docs.npmjs.com/trusted-publishers.
node-version: 24
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm ci --ignore-scripts
- run: npm run compile
# Release Please has already incremented versions and published tags, so we just
# need to publish all unpublished versions to npm here
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-all-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
node-version: 18
- name: Install
run: npm ci
run: npm ci --ignore-scripts
- name: Build
run: npm run compile
- name: Upload Build Artifacts
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
run: npm ci --ignore-scripts
- name: Download Build Artifacts
uses: actions/download-artifact@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: 18
- name: Install
run: npm ci
run: npm ci --ignore-scripts
# Note: when pushing to main we want to test only what changed in
# last commit. Otherwise we want to test all changes from origin/main.
# So we set the right values for base and head commits depending
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
run: npm ci --ignore-scripts
- name: Download Build Artifacts
uses: actions/download-artifact@v5
with:
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
with:
node-version: 18
- name: Install
run: npm ci
run: npm ci --ignore-scripts
# NOTE: keep this in sync with the node versions from `unit-test` job
- name: Download Test Artifacts (18)
uses: actions/download-artifact@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-otel-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- run: npm install -g npm@latest

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

- name: Create/Update Release PR
run: |
Expand Down
Loading