Add JWT auth: login, refresh, logout, protected endpoints #71
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: Backend Tests | ||
|
Check failure on line 1 in .github/workflows/backend-tests.yml
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - 'backend/**' | ||
| - '.github/workflows/backend-tests.yml' | ||
| push: | ||
| branches: | ||
| - main | ||
| - develop | ||
| paths: | ||
| - 'backend/**' | ||
| - name: Upload test results | ||
| if: always() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: test-results-${{ matrix.node-version }} | ||
| path: backend/coverage/ | ||
| if-no-files-found: ignore | ||
| - name: Validate deployment compose config and build | ||
| if: matrix.node-version == '20.x' | ||
| run: | | ||
| docker compose -f deployment/docker-compose.yml config | ||
| docker compose -f deployment/docker-compose.yml build frontend backend | ||