chore(deps): update plugin com.avast.gradle.docker-compose to v0.17.11 #3472
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: Server-UI functional test | |
on: | |
push: | |
paths: | |
- 'cypress-common/**' | |
- 'functional-test/**' | |
- 'ui/**' | |
- 'server/**' | |
- 'gradle/**' | |
- 'build.gradle' | |
- 'gradle.properties' | |
- 'settings.gradle' | |
- '.github/workflows/server-ui-functional-test.yml' | |
jobs: | |
assemble-and-functional-test: | |
runs-on: ubuntu-24.04 | |
services: | |
database: | |
image: postgres:17.1-alpine | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: testuser | |
POSTGRES_PASSWORD: testpass | |
POSTGRES_DB: projektordb | |
TZ: UTC | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
objectstorage: | |
image: bitnami/minio:2020.12.29-debian-10-r17 | |
ports: | |
- "9000:9000" | |
volumes: | |
- /tmp:/data | |
env: | |
MINIO_ACCESS_KEY: minio_access_key | |
MINIO_SECRET_KEY: minio_secret_key | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Install Cypress dependencies | |
run: | | |
sudo apt-get install xvfb libgtk2.0-0 libnotify-dev libnss3 libxss1 | |
- name: Get Yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache Yarn dependencies | |
uses: actions/cache@v4 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-all-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-all-yarn- | |
- name: Increase file watchers | |
run: | | |
sudo sysctl fs.inotify.max_user_watches=1048576 | |
- name: ui install | |
run: | | |
cd ui | |
yarn install | |
- name: cypress-common install | |
run: | | |
cd cypress-common | |
yarn install | |
- name: functional-test install | |
run: | | |
cd functional-test | |
yarn install | |
- name: Run functional tests | |
env: | |
DB_URL: "jdbc:postgresql://localhost:5432/projektordb" | |
PROJEKTOR_TOKEN: ${{ secrets.PROJEKTOR_TOKEN }} | |
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }} | |
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }} | |
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }} | |
run: ./gradlew :functional-test:functionalTest |