Skip to content

Commit

Permalink
Merge pull request #68 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
  • Loading branch information
mgordel authored Mar 18, 2024
2 parents 8708d51 + 26ea027 commit 2c3eabc
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 2c3eabc

Please sign in to comment.