-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v2 workflow * Delete legacy workflow
- Loading branch information
Danny McCormick
authored and
GitHub
committed
Jul 11, 2019
1 parent
46ca045
commit 9242e91
Showing
2 changed files
with
23 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |