Skip to content

Commit

Permalink
feat(ci): setup GitHub Actions to verify changes
Browse files Browse the repository at this point in the history
Giving GitHub Actions a shot to see how it
compares to Travis CI.
  • Loading branch information
phillipj authored Aug 20, 2019
1 parent 89a1dfc commit 403df95
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: [4.x, 6.x, 8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
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 403df95

Please sign in to comment.