1
Fork 0

switch to github actions

This commit is contained in:
Conduitry 2019-09-12 11:06:33 -04:00
parent 5cc954bb02
commit 494ee61d71
2 changed files with 18 additions and 9 deletions

18
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,18 @@
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test
env:
CI: true

View File

@ -1,9 +0,0 @@
language: node_js
os:
- linux
- osx
- windows
node_js:
- "8"
- "10"
- node