2019-07-11 22:24:33 +02:00
|
|
|
name: Main workflow
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-26 04:59:48 +02:00
|
|
|
steps:
|
2019-07-23 19:22:25 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
2019-07-11 22:24:33 +02:00
|
|
|
- name: Set Node.js 10.x
|
2019-07-16 20:24:29 +02:00
|
|
|
uses: actions/setup-node@master
|
2019-07-11 22:24:33 +02:00
|
|
|
with:
|
|
|
|
version: 10.x
|
|
|
|
|
|
|
|
- name: npm install
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: npm test
|
|
|
|
run: npm test
|