Skip to content

Commit

Permalink
feat: add frontend linter
Browse files Browse the repository at this point in the history
  • Loading branch information
seelengxd committed Sep 19, 2024
1 parent 17c430b commit 8dd8b10
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: CI
on: push
jobs:
eslint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20.5.1"
- name: install
run: yarn install
- name: ESLint
run: eslint --ext .ts,.tsx ./app

0 comments on commit 8dd8b10

Please sign in to comment.