Skip to content

Commit

Permalink
fix: apply fix in proper location
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg authored May 2, 2024
1 parent c444ab3 commit e69f7c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
uses: actions/setup-node@v4.0.0
with:
node-version: ${{ matrix.node }}
- name: Temporary fix for Windows
# temporary, see https://github.com/nodejs/node/issues/52682
if: runner.os == 'Windows'
shell: bash
run: |
npm install -g npm
- name: Install Dependencies
run: |
npm install --no-progress
Expand All @@ -36,12 +42,6 @@ jobs:
uses: actions/setup-node@v4.0.0
with:
node-version: lts/*
- name: Temporary fix for Windows
# temporary, see https://github.com/nodejs/node/issues/52682
if: runner.os == 'Windows'
shell: bash
run: |
npm install -g npm
- name: Install dependencies
run: |
npm install --no-progress --no-package-lock --no-save
Expand Down

0 comments on commit e69f7c3

Please sign in to comment.