Skip to content

Commit 47b8aae

Browse files
authored
chore: run GH Actions on windows as well (#9540)
1 parent 7d59561 commit 47b8aae

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,16 @@ jobs:
5656
matrix:
5757
# https://github.com/actions/setup-node/issues/27
5858
node-version: [8.17.0, 10.x, 12.x, 13.x]
59-
# Windows tests are failing for whatever reason, so just do linux and mac for now
60-
os: [ubuntu-latest, macOS-latest]
59+
os: [ubuntu-latest, macOS-latest, windows-latest]
6160
runs-on: ${{ matrix.os }}
6261

6362
steps:
63+
- name: Set git config
64+
shell: bash
65+
run: |
66+
git config --global core.autocrlf false
67+
git config --global core.symlinks true
68+
if: runner.os == 'Windows'
6469
- uses: actions/checkout@v2
6570
- name: Get yarn cache
6671
id: yarn-cache

0 commit comments

Comments
 (0)