mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-25 04:43:03 +03:00
Try running GH Action on Windows in addition to Linux.
This commit is contained in:
parent
807ea6517b
commit
75cd0bbe9b
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -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 it’s
|
# Since `npm ci` removes the node_modules folder before running it’s
|
||||||
|
Loading…
Reference in New Issue
Block a user