Skip to content

Commit

Permalink
Try to remove Node and NPM from Windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroslav committed Jan 24, 2025
1 parent 65349ad commit c7941cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Remove Node.js and npm
run: |
Remove-Item -Path "C:\Program Files\nodejs" -Recurse -Force
Remove-Item -Path "C:\npm" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$env:APPDATA\npm" -Recurse -Force -ErrorAction SilentlyContinue
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit c7941cb

Please sign in to comment.