Skip to content

Commit

Permalink
Convert to new GitHub Actions yaml format
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipj authored Aug 21, 2019
1 parent 1c4187a commit fc8eb5d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Verify changes

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test

0 comments on commit fc8eb5d

Please # to comment.