Konrad Pabjan 948e5343c7
Revert "Update releases/v1 with changes from master (#67)" (#68)
This reverts commit bdd6409dc13e625e6c1c0ad857bd591804786f7b.
2020-03-09 10:51:55 +01:00

27 lines
498 B
YAML

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test