Skip to content

Feat: add codeql action #6

Feat: add codeql action

Feat: add codeql action #6

Workflow file for this run

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