SCRUM-275/308: Nuxt Fe(feature): Enable supervisors to accept/dismiss/add as supervisee students from their profile page #621
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: Frontend CI | |
| on: | |
| pull_request: | |
| branches: [ "main", "dev" ] | |
| workflow_dispatch: | |
| jobs: | |
| frontend-CI: | |
| name: Frontend CI | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./Frontend | |
| steps: | |
| - name: Checkout Branch | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Format | |
| run: npm run format --if-present | |
| - name: Lint | |
| run: npm run lint --if-present | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Test | |
| run: npm run test --if-present |