Feature/1135 Apply Formatters (#1221) #5991
Workflow file for this run
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: 'Frontend tests' | |
on: [push] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{vars.NODE_VERSION}} | |
- name: Npm install | |
run: npm ci | |
- name: Run unit tests | |
run: npm test | |
get-e2e-files: | |
runs-on: ubuntu-24.04 | |
outputs: | |
file_list: ${{ steps.generate-file-list.outputs.file_list }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate file list | |
id: generate-file-list | |
run: | | |
FILES=$(ls frontend/cypress/e2e | jq -R . | jq -s . | jq -c) | |
echo $FILES | |
echo "file_list=$FILES" >> $GITHUB_OUTPUT | |
e2e: | |
needs: get-e2e-files | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
file: ${{ fromJSON(needs.get-e2e-files.outputs.file_list) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{vars.JAVA_VERSION}} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{vars.JAVA_VERSION}} | |
distribution: 'temurin' | |
- name: run keycloak docker | |
run: | | |
docker run -d \ | |
--name my_keycloak \ | |
-e KC_BOOTSTRAP_ADMIN_USERNAME=admin26 \ | |
-e KC_BOOTSTRAP_ADMIN_PASSWORD=keycloak26 \ | |
-v ./docker/config/realm-export-pitc.json:/opt/keycloak/data/import/realm-pitc.json \ | |
-p 8544:8080 \ | |
quay.io/keycloak/keycloak:26.0.1 \ | |
start-dev --import-realm | |
- name: start backend | |
run: cd ./backend && mvn spring-boot:run -Dspring-boot.run.profiles=integration-test & | |
- name: Cypress run e2e tests | |
uses: cypress-io/github-action@v6 | |
with: | |
working-directory: frontend | |
start: npm start | |
wait-on: 'http://pitc.okr.localhost:8080/config, http://pitc.okr.localhost:4200, http://localhost:8544' | |
wait-on-timeout: 120 | |
browser: chrome | |
headed: false | |
spec: cypress/e2e/${{ matrix.file }} | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: cypress-screenshots for ${{ matrix.file }} | |
path: frontend/cypress/screenshots | |
- name: remove docker containers | |
run: docker ps -aq | xargs -r docker rm -f |