Skip to content

Commit

Permalink
github: Run eslint on pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Mar 14, 2021
1 parent 2501a1e commit d52ff05
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: ESLint
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: sudo npm install eslint -g
- name: Run ESLint
run: eslint . --ext .js,.jsx,.ts,.tsx

0 comments on commit d52ff05

Please sign in to comment.