fix(#652): Cypress tests for signup/verify email #477
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 | |
on: push | |
jobs: | |
run-quality-check: | |
name: Lint, check formatting and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Prepare Frontend | |
working-directory: frontend | |
run: npm ci | |
- name: Run linters for frontend | |
working-directory: frontend | |
run: npm run lint | |
- name: Run format check for frontend | |
working-directory: frontend | |
run: npm run format:check | |
- name: Build frontend | |
working-directory: frontend | |
run: npm run build |