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