Skip to content

Commit

Permalink
add github action for linting (webrtc#1395)
Browse files Browse the repository at this point in the history
and remove travis-ci
  • Loading branch information
fippo authored Jan 7, 2021
1 parent ffcd779 commit ea98ee4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 57 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: lint

on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: npx gulp stylelint
- run: npx gulp eslint
57 changes: 0 additions & 57 deletions .travis.yml

This file was deleted.

0 comments on commit ea98ee4

Please sign in to comment.