Skip to content

Commit

Permalink
lint: run linter using GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Mar 23, 2020
1 parent 959d614 commit 9ec3faa
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Linter

on: [pull_request]

jobs:
run-linter:
name: Run Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm run lint

0 comments on commit 9ec3faa

Please sign in to comment.