Skip to content

Commit a96b165

Browse files
committed
install wget if windows
1 parent 6fa0b9f commit a96b165

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dry-run.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- 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
19+
- name: Windows only, install wget
20+
if: ${{ runner.os == 'windows-latest' }}
21+
run: |
22+
choco install wget --no-progress
2023
- name: Install nodejs dependencies
2124
run: |
2225
npm install

0 commit comments

Comments
 (0)