2019-07-11 20:15:37 +00:00
|
|
|
name: Main workflow
|
2019-12-30 15:25:03 +00:00
|
|
|
on: [push, pull_request]
|
2019-07-11 20:15:37 +00:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-26 02:59:00 +00:00
|
|
|
steps:
|
2019-07-23 17:22:18 +00:00
|
|
|
- name: Checkout
|
2020-03-26 15:39:48 +00:00
|
|
|
uses: actions/checkout@v2
|
2019-07-23 17:22:18 +00:00
|
|
|
|
2020-03-26 15:39:48 +00:00
|
|
|
- name: Set Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
2019-07-11 20:15:37 +00:00
|
|
|
with:
|
2020-03-26 15:39:48 +00:00
|
|
|
node-version: 12.x
|
2019-07-11 20:15:37 +00:00
|
|
|
|
|
|
|
- name: npm install
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: npm test
|
|
|
|
run: npm test
|