Try adding v2 workflow

This commit is contained in:
Danny McCormick 2019-07-11 13:01:38 -04:00 committed by GitHub
parent b4ae196409
commit e93d8fd1dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
.github/workflows/workflow.yml vendored Normal file
View file

@ -0,0 +1,27 @@
version: 1.0
name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
actions:
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
- name: npm install
# Explicitly uninstall husky so that we avoid issues with git hooks/node versioning.
# Should switch to clean checkout instead when supported.
run: npm prune --production && npm install && npm uninstall husky
- name: Lint
run: npm run format-check
- name: npm test
run: npm test