Skip to content

Commit

Permalink
fix: workaround for npm on Node 22 windows bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed May 2, 2024
1 parent cf32ad0 commit e466ba9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-and-release.yml
Expand Up @@ -36,6 +36,11 @@ jobs:
uses: actions/setup-node@v4.0.0
with:
node-version: lts/*
- if: runner.os == 'Windows'
# temporary, see https://github.com/nodejs/node/issues/52682
shell: bash
run: |
npm install -g npm
- name: Install dependencies
run: |
npm install --no-progress --no-package-lock --no-save
Expand All @@ -47,4 +52,3 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

0 comments on commit e466ba9

Please sign in to comment.