13 lines
320 B
YAML
13 lines
320 B
YAML
playwright_tests:
|
|
stage: test
|
|
image: mcr.microsoft.com/playwright:v1.43.0-jammy
|
|
script:
|
|
- npm config set registry https://registry.npmmirror.com
|
|
- npm install
|
|
- npx playwright install
|
|
- npx playwright test
|
|
tags:
|
|
- test # 这里要和注册 Runner 时的 `tag-list` 一致
|
|
only:
|
|
- main
|