Skip to content

Commit

Permalink
move tests to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Conduitry committed Sep 17, 2019
1 parent 3c5ccf6 commit d4ea5d3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 51 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on: [push, pull_request]
jobs:
Tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: 'npm i && npm test'
env:
CI: true
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

31 changes: 0 additions & 31 deletions appveyor.yml

This file was deleted.

0 comments on commit d4ea5d3

Please sign in to comment.