cache/.github/workflows/workflow.yml

44 lines
719 B
YAML
Raw Normal View History

name: Tests
2019-11-13 05:48:02 +08:00
2019-10-31 02:48:49 +08:00
on:
pull_request:
2019-11-08 09:02:06 +08:00
branches:
- master
paths-ignore:
- '**.md'
2019-10-31 02:48:49 +08:00
push:
branches:
- master
paths-ignore:
2019-11-01 22:22:36 +08:00
- '**.md'
2019-10-31 02:48:49 +08:00
jobs:
test:
name: Test on ${{ matrix.os }}
2019-11-13 05:48:02 +08:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
2019-11-13 05:48:02 +08:00
runs-on: ${{ matrix.os }}
2019-11-13 05:48:02 +08:00
2019-10-31 02:48:49 +08:00
steps:
- uses: actions/checkout@v1
2019-11-13 05:48:02 +08:00
- uses: actions/setup-node@v1
with:
node-version: '12.x'
2019-10-31 02:48:49 +08:00
- run: npm ci
- name: Prettier Format Check
2019-11-13 05:48:02 +08:00
if: matrix.os == 'ubuntu-latest'
2019-10-31 02:48:49 +08:00
run: npm run format-check
2019-11-13 05:48:02 +08:00
- name: ESLint Check
if: matrix.os == 'ubuntu-latest'
run: npm run lint
2019-10-31 02:48:49 +08:00
- name: Build & Test
run: npm run test