Skip to content

Commit

Permalink
Add workflow to run ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexesprit committed Apr 12, 2020
1 parent 820a021 commit d8ddd2e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize]
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm run lint

0 comments on commit d8ddd2e

Please sign in to comment.