Skip to content

Commit

Permalink
test: hello github CI, bye travis and appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
forresst committed Feb 27, 2020
1 parent 5dc1883 commit 3f93f1b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 30 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,26 @@
name: Install and test amunet
on: [push, pull_request]
env:
CI: true

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 13.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions appveyor.yml

This file was deleted.

0 comments on commit 3f93f1b

Please sign in to comment.