Skip to content

Commit

Permalink
chore: run GH Actions on windows as well (#9540)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 11, 2020
1 parent 7d59561 commit 47b8aae
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,16 @@ jobs:
matrix:
# https://github.com/actions/setup-node/issues/27
node-version: [8.17.0, 10.x, 12.x, 13.x]
# Windows tests are failing for whatever reason, so just do linux and mac for now
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Set git config
shell: bash
run: |
git config --global core.autocrlf false
git config --global core.symlinks true
if: runner.os == 'Windows'
- uses: actions/checkout@v2
- name: Get yarn cache
id: yarn-cache
Expand Down

0 comments on commit 47b8aae

Please sign in to comment.