Skip to content

Commit

Permalink
Feat: add eslint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JedBeom committed Jan 25, 2025
1 parent 933c39f commit 715c7a8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: eslint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm i
working-directory: ./frontend
- name: Run ESLint
run: npm run lint
working-directory: ./frontend

0 comments on commit 715c7a8

Please sign in to comment.