Merge pull request 'chore: Add some tests' (!283) from playwright into main
All checks were successful
Build docs / build-docs (push) Successful in 13s
Release / Release (push) Successful in 44s
Release / Build Frontend Image (push) Successful in 1m35s
Release / Build Backend Image (push) Successful in 2m0s

Reviewed-on: #283
Reviewed-by: Constantin Simonis <constantin@simonis.lol>
This commit is contained in:
Jan K9f 2025-06-06 11:59:11 +00:00
commit 739c4f610a
No known key found for this signature in database
GPG key ID: 944223E4D46B7412
12 changed files with 216 additions and 7 deletions

View file

@ -165,6 +165,46 @@ jobs:
cd frontend
bun run lint
playwright:
runs-on: ubuntu-latest
name: Playwright
needs: changed_files
container:
image: git.kjan.de/actions/runner-casino-playwright:latest
if: ${{ needs.changed_files.outputs.frontend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "temurin" # See 'Supported distributions' for available options
java-version: "23"
- name: Install bun
uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4
working-directory: ./frontend
with:
path: |
frontend/node_modules/
key: ${{ runner.os }}-bun-
restore-keys: |
${{ runner.os }}-bun-
- run: bun add -g concurrently
- name: Install dependencies
run: |
cd frontend
bun install
- uses: actions/setup-node@v4
with:
node-version: 22.12
working-directory: ./frontend
- name: Run Playwright tests
env:
CI: true
SPRING_PROFILES_ACTIVE: inmemory
working-directory: ./frontend
run: bash -c "source $HOME/.cargo/env && bunx playwright test"
oxlint:
runs-on: docker
name: oxlint