21 lines
396 B
YAML
21 lines
396 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
depends_on:
|
|
- test
|
|
|
|
services:
|
|
- name: miniauth
|
|
image: git.keks.cloud/kekskurse/miniauth:${CI_COMMIT_SHA}
|
|
ports:
|
|
- 8080
|
|
|
|
steps:
|
|
- name: playwright
|
|
image: mcr.microsoft.com/playwright:v1.51.0-noble
|
|
commands:
|
|
- cp -r playwright/* ./
|
|
- npx playwright install
|
|
- npx playwright test
|
|
- cat /root/.npm/_logs/*
|