This repository was archived by the owner on Sep 14, 2025. It is now read-only.
Feat: init codes, profile and scoreboard pages #1450
This file contains hidden or 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: Check ESLint | |
| on: | |
| push: | |
| jobs: | |
| check-eslint: | |
| runs-on: ubuntu-latest | |
| name: Check ESLint | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Run ESLint | |
| run: yarn lint |