Skip to content

Commit

Permalink
build(ci): fixed bug with incorrectly reported attestation for npm < …
Browse files Browse the repository at this point in the history
…10.5.0
  • Loading branch information
mgordel committed Mar 18, 2024
1 parent ab4eb61 commit a3469d8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ jobs:
# Semantic release requires this as bare minimum
node-version: 20

# Why this? https://github.com/npm/cli/issues/7279
# Why this way? https://github.com/actions/setup-node/issues/213
- name: Install latest npm
shell: bash
run: |
npm install -g npm@latest &&
npm --version &&
npm list -g --depth 0
- name: Install dependencies
run: npm install

Expand Down

0 comments on commit a3469d8

Please sign in to comment.