Skip to content

Commit

Permalink
🚀 add github action for code linting (ref #108)
Browse files Browse the repository at this point in the history
  • Loading branch information
M4GNV5 committed Nov 17, 2021
1 parent a1dec4a commit 47d460c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: push
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Run ESLint
run: eslint . --ext .js,.jsx,.ts,.tsx

0 comments on commit 47d460c

Please sign in to comment.