Skip to content

Commit

Permalink
Migrate to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
luin committed Sep 6, 2021
1 parent 1793226 commit d89bff4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 355 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,22 @@
name: 'Run tests'
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run test:coverage
- run: npm run test:coverage:report
- name: Coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

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

This file was deleted.

0 comments on commit d89bff4

Please sign in to comment.