updates/.github/workflows/ci.yaml

21 lines
408 B
YAML
Raw Normal View History

2020-03-08 09:43:25 +00:00
name: ci
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
2020-04-30 09:23:15 +00:00
node: ['10', '12', '14']
2020-03-08 09:43:25 +00:00
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: yarn -s
- run: yarn -s test