2019-07-11 16:15:37 -04:00
|
|
|
name: Main workflow
|
2019-12-30 10:25:03 -05:00
|
|
|
on: [push, pull_request]
|
2019-07-11 16:15:37 -04:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-25 22:59:00 -04:00
|
|
|
steps:
|
2019-07-23 13:22:18 -04:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
2019-07-11 16:15:37 -04:00
|
|
|
- name: Set Node.js 10.x
|
2019-07-16 14:35:13 -04:00
|
|
|
uses: actions/setup-node@master
|
2019-07-11 16:15:37 -04:00
|
|
|
with:
|
2019-11-23 02:27:14 -05:00
|
|
|
node-version: 10.x
|
2019-07-11 16:15:37 -04:00
|
|
|
|
|
|
|
- name: npm install
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: npm test
|
|
|
|
run: npm test
|