fix ui for front end #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality Check | |
on: | |
pull_request: | |
branches: | |
- main # pull request to main branch | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' # Use the Node.js version of your project | |
- name: Install dependencies | |
run: npm install | |
- name: Run ESLint | |
id: eslint | |
run: npx eslint . --ext .js,.jsx,.ts,.tsx | |