feat: update quiz intro test #171
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: CI | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd="pg_isready -U postgres" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create quizmaster database | |
run: psql -U postgres -h localhost -f backend/create_db.sql | |
env: | |
PGPASSWORD: postgres | |
- name: Grant execute permission for gradlew | |
run: chmod +x backend/gradlew | |
- name: Install Node.js, pnpm, dependencies and Playwright | |
working-directory: backend | |
run: ./gradlew installFrontend | |
- name: Lint & format frontend | |
working-directory: backend | |
run: ./gradlew checkFrontend | |
- name: Run backend tests | |
working-directory: backend | |
run: ./gradlew test | |
- name: Run end-to-end tests | |
working-directory: backend | |
run: ./gradlew testE2E |