Skip to content

Commit

Permalink
Merge pull request #35 from golemfactory/npm-attestation-bugfix
Browse files Browse the repository at this point in the history
build(ci): fixed bug with incorrectly reported attestation for npm < 10.5.0
  • Loading branch information
mgordel authored Mar 12, 2024
2 parents cd3f3a0 + 6cd5333 commit 0867126
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,14 @@ 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 0867126

Please sign in to comment.