Skip to content

Commit

Permalink
Merge pull request #47 from aackerman/aackerman-patch-1
Browse files Browse the repository at this point in the history
Add github actions workflow
  • Loading branch information
aackerman committed Aug 13, 2019
2 parents 3c90b7e + e6e5493 commit 9e04e80
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Node CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10.x
- name: npm install and test
run: |
npm install
npm test
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 9e04e80

Please sign in to comment.