Fix eslint about useRef is never used #5
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: React CI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
types: [opened, reopened, synchronize] | |
jobs: | |
build-and-test: | |
name: Build and Test React App | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 19 | |
- name: Install Dependencies | |
run: npm install | |
- name: Lint Code | |
run: npm run lint | |
- name: Run Code Formatting | |
run: npm run format | |
- name: Run Tests | |
run: npm test | |
- name: Build React App | |
run: npm run build |