We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e83984 commit 6f40cdbCopy full SHA for 6f40cdb
.github/workflows/job-compile-and-test.yml
@@ -26,6 +26,14 @@ jobs:
26
with:
27
node-version: 20
28
29
+ - name: Delete .npmrc file (Windows)
30
+ if: runner.os == "Windows"
31
+ run: Remove-Item -Path $env:USERPROFILE\.npmrc -Force
32
+
33
+ - name: Delete .npmrc file (Unix)
34
+ if: runner.os != "Windows"
35
+ run: rm -f $HOME/.npmrc
36
37
- name: Install Dependencies
38
run: yarn install ${{ inputs.yarn-args }}
39
working-directory: Extension
0 commit comments