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 6fa0b9f commit a96b165Copy full SHA for a96b165
.github/workflows/dry-run.yml
@@ -16,7 +16,10 @@ jobs:
16
runs-on: ${{ matrix.os }}
17
steps:
18
- uses: actions/checkout@v3
19
- # depending on the windows command (when we are ready to build for it), may have to check which os currently on
+ - name: Windows only, install wget
20
+ if: ${{ runner.os == 'windows-latest' }}
21
+ run: |
22
+ choco install wget --no-progress
23
- name: Install nodejs dependencies
24
run: |
25
npm install
0 commit comments