Add Course Details Drawer #42
Workflow file for this run
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: Code Quality Check | |
| on: | |
| # Only run push events on the main branch | |
| push: | |
| branches: | |
| - main | |
| # Run on all pull requests | |
| pull_request: | |
| jobs: | |
| prettier-check: | |
| name: Run Prettier Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Environment | |
| uses: ./.github/workflows/setup-node | |
| - name: Run Prettier check | |
| run: npm run prettier:check | |
| eslint-check: | |
| name: Run ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Environment | |
| uses: ./.github/workflows/setup-node | |
| - name: Run ESLint | |
| run: npm run lint |