2019-07-12 03:22:28 +07:00
|
|
|
name: Main workflow
|
2019-10-11 06:52:12 +07:00
|
|
|
on: [push, pull_request]
|
2019-07-12 03:22:28 +07:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-26 09:59:29 +07:00
|
|
|
steps:
|
2019-07-24 00:22:11 +07:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
2019-07-12 03:22:28 +07:00
|
|
|
- name: Set Node.js 10.x
|
2019-07-17 01:32:35 +07:00
|
|
|
uses: actions/setup-node@master
|
2019-07-12 03:22:28 +07:00
|
|
|
with:
|
|
|
|
version: 10.x
|
|
|
|
|
|
|
|
- name: npm install
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: npm test
|
|
|
|
run: npm test
|