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 6f40cdb commit 0142fddCopy full SHA for 0142fdd
.github/workflows/job-compile-and-test.yml
@@ -19,19 +19,19 @@ jobs:
19
runs-on: ${{ inputs.runner-env }}
20
21
steps:
22
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
23
24
- name: Use Node.js 20
25
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
26
with:
27
node-version: 20
28
29
- name: Delete .npmrc file (Windows)
30
- if: runner.os == "Windows"
+ 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"
+ if: ${{ runner.os != 'Windows' }}
35
run: rm -f $HOME/.npmrc
36
37
- name: Install Dependencies
0 commit comments