Update all non-major dependencies #253
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: 'Run tests' | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'cypress/**' | |
- 'cypress.config.json' | |
- 'services/**' | |
- '!services/backend/src/rapodiff/**' | |
- 'docker-compose.ci.yml' | |
- 'package*.json' | |
jobs: | |
lint_backend_and_frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint backend and frontend | |
uses: ./.github/actions/lint | |
test_end_to_end: | |
runs-on: ubuntu-latest | |
needs: | |
- lint_backend_and_frontend | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: 'Test course statistics' | |
spec: cypress/e2e/Course_statistics.js | |
- name: 'Test custom population' | |
spec: cypress/e2e/Custom_population.js | |
- name: 'Test population statistics' | |
spec: cypress/e2e/Population_statistics.js | |
- name: 'Test filters' | |
spec: cypress/e2e/Filters.js | |
- name: 'Test students' | |
spec: cypress/e2e/Students.js | |
- name: 'Test completed courses' | |
spec: cypress/e2e/Completed_courses.js | |
- name: 'Test studyprogramme overview' | |
spec: cypress/e2e/Studyprogramme_overview.js | |
- name: 'Test teachers and users' | |
spec: | | |
cypress/e2e/Teachers.js | |
cypress/e2e/Users.js | |
- name: 'Test faculty statistics' | |
spec: cypress/e2e/Faculty_statistics.js | |
- name: 'Test open uni search' | |
spec: cypress/e2e/Openuni.js | |
- name: 'Test language center view' | |
spec: cypress/e2e/Language_center.js | |
- name: 'Test study guidance groups' | |
spec: cypress/e2e/Study_guidance_groups.js | |
- name: 'Test evaluation overview' | |
spec: cypress/e2e/Evaluation_overview.js | |
name: ${{ matrix.name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Run tests' | |
uses: ./.github/actions/run-tests | |
with: | |
username: ${{ secrets.TOSKAREGISTRY_USERNAME }} | |
password: ${{ secrets.TOSKAREGISTRY_PASSWORD }} | |
spec: ${{ matrix.spec }} |