Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4 from actions/v2-workflow
v2 workflow
  • Loading branch information
Danny McCormick authored and GitHub committed Jul 11, 2019
2 parents eeb946a + 8560958 commit fc36eb1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/main.workflow.yml

This file was deleted.

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 fc36eb1

Please sign in to comment.