Skip to content

Commit

Permalink
chore(ci): migrate to github actions (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhulce committed Feb 5, 2021
1 parent a2d7ed9 commit 417e8e2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,19 @@
name: CI
on:
push:
branches: [master]
pull_request: # run on all PRs, not just PRs to a particular branch
jobs:
test:
strategy:
fail-fast: true
matrix:
nodeversion: [8.x, 10.x, 12.x, 14.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodeversion }}
- run: npm install
- run: npm test
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit 417e8e2

Please sign in to comment.