1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-07-03 13:26:38 -04:00

CI: test more Operating Systems

This commit is contained in:
XhmikosR
2021-11-02 17:08:35 +02:00
parent fcd9ec216a
commit daf3f0c71d

View File

@ -29,13 +29,19 @@ jobs:
run: npm run lint
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [10, 12, 14, 16]
include:
- os: windows-latest
node: 16
- os: macos-latest
node: 16
steps:
- name: Clone repository