Skip to content

Commit

Permalink
ci: migrate to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang committed May 4, 2021
1 parent e91059d commit 71d55f5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Linter

on: [push, pull_request]

jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
- name: Install Dependencies
run: npm install
- run: npm run eslint
- name: Coverage
run: npx nyc --reporter=lcovonly npm run test
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

0 comments on commit 71d55f5

Please sign in to comment.