Skip to content

Commit

Permalink
Migrate CI to github actions; also update tested versions to more cur…
Browse files Browse the repository at this point in the history
…rent releases (#33)
  • Loading branch information
AaronAtDuo authored Nov 9, 2020
1 parent 288306d commit 94dffab
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Node CI
on: [push, pull_request]

jobs:
node-ci:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8, 10, 12, 14, 15]

steps:
- uses: actions/checkout@v2
- name: Set up Node JS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Linting
run: npm run lint
- name: Testing
run: npm run test

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 94dffab

Please sign in to comment.