Try running GH Action on Windows in addition to Linux.

This commit is contained in:
Dillon Kearns 2021-10-16 09:33:33 -07:00
parent 807ea6517b
commit 75cd0bbe9b

View File

@ -10,7 +10,10 @@ on:
jobs: jobs:
main: main:
runs-on: ubuntu-latest strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js 15 - name: Use Node.js 15
@ -25,7 +28,7 @@ jobs:
path: | path: |
~/.cache/Cypress ~/.cache/Cypress
node_modules node_modules
key: node_modules-node-v${{ matrix.node }}-${{ hashFiles('package-lock.json') }} key: node_modules-${{ matrix.os }}-node-v${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
# Re-use ~/.elm between runs until elm.json, elm-tooling.json or # Re-use ~/.elm between runs until elm.json, elm-tooling.json or
# review/elm.json changes. The Elm compiler saves downloaded Elm packages # review/elm.json changes. The Elm compiler saves downloaded Elm packages
@ -34,7 +37,7 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: ~/.elm path: ~/.elm
key: elm-${{ hashFiles('elm.json', 'elm-tooling.json', 'generator/elm.json', 'review/elm.json') }} key: elm-${{ matrix.os }}-${{ hashFiles('elm.json', 'elm-tooling.json', 'generator/elm.json', 'review/elm.json') }}
# Install npm packages, unless we restored them from cache. # Install npm packages, unless we restored them from cache.
# Since `npm ci` removes the node_modules folder before running its # Since `npm ci` removes the node_modules folder before running its