20 lines
392 B
YAML
20 lines
392 B
YAML
playwright_tests:
|
|
stage: test
|
|
image: mcr.microsoft.com/playwright:v1.43.0-jammy
|
|
cache:
|
|
key: $CI_COMMIT_REF_SLUG
|
|
paths:
|
|
- node_modules/
|
|
before_script:
|
|
- npm config set registry https://registry.npmmirror.com
|
|
script:
|
|
- npm install
|
|
- npx playwright test
|
|
artifacts:
|
|
paths:
|
|
- test-results/
|
|
expire_in: 1 week
|
|
tags:
|
|
- test
|
|
only:
|
|
- main |