2019-10-31 15:37:00 +01:00
|
|
|
name: Tests
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-30 19:48:49 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
2019-11-08 02:02:06 +01:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2019-10-30 19:48:49 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-10-31 22:22:35 +01:00
|
|
|
paths-ignore:
|
2019-11-01 15:22:36 +01:00
|
|
|
- '**.md'
|
2019-10-30 19:48:49 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2019-10-31 15:37:00 +01:00
|
|
|
name: Test on ${{ matrix.os }}
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-31 15:37:00 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-31 15:37:00 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-30 19:48:49 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-31 15:37:00 +01:00
|
|
|
- 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
|
|
|
|
|
2019-11-12 22:48:02 +01:00
|
|
|
- name: ESLint Check
|
|
|
|
run: npm run lint
|
|
|
|
|
2019-10-30 19:48:49 +01:00
|
|
|
- name: Build & Test
|
|
|
|
run: npm run test
|