Skip to content

Commit

Permalink
Switch to github workflows in favor of travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pcardune committed May 20, 2022
1 parent bf40145 commit a4f23d1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 14 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Automated Tests
on:
push:
branches:
- main
pull_request:
branches:
- "**"

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: npm ci
- name: Test
run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit a4f23d1

Please sign in to comment.