cache/.github/workflows/workflow.yml

32 lines
537 B
YAML
Raw Normal View History

name: Tests
2019-10-30 19:48:49 +01:00
on:
pull_request:
push:
branches:
- master
paths-ignore:
- '**/*.md'
2019-10-30 19:48:49 +01:00
jobs:
test:
name: Test on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
2019-10-30 19:48:49 +01:00
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
2019-10-30 19:48:49 +01:00
- run: npm ci
- name: Prettier Format Check
run: npm run format-check
- name: Build & Test
run: npm run test