Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
v2 workflow
  • Loading branch information
Danny McCormick authored and GitHub committed Jul 11, 2019
1 parent eeb946a commit 51413cb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/workflow.yml
@@ -0,0 +1,23 @@
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: bryanmacfarlane/node-config@master
with:
version: 10.x

- name: npm install
run: npm install

- name: Lint
run: npm run format-check

- name: npm test
run: npm test

0 comments on commit 51413cb

Please sign in to comment.