Skip to content

Commit

Permalink
Use GitHub actions for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot committed Aug 31, 2019
1 parent 3a13279 commit 2dcce28
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,17 @@
name: Lint

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: npm install and lint
run: |
npm install
npm run lint
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -69,7 +69,6 @@ install:
- npm run rebuild

script:
- npm run lint
- npm test

# if publishing, do it
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Expand Up @@ -47,7 +47,6 @@ build_script:
- npm run rebuild

test_script:
- npm run lint
- npm test

- ps: >
Expand Down

0 comments on commit 2dcce28

Please sign in to comment.