workflow to validate versions

This commit is contained in:
Bryan MacFarlane
2020-01-17 15:38:43 -05:00
parent 6e4e910c49
commit afb3ce33ca
3 changed files with 44 additions and 5 deletions

View File

@@ -1,5 +1,13 @@
name: Main workflow
on: [push]
name: build-test
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
run:
name: Run
@@ -11,10 +19,10 @@ jobs:
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
- name: Set Node.js 12.x
uses: actions/setup-node@master
with:
version: 10.x
version: 12.x
- name: npm install
run: npm install