ant-design/docker-compose.yml
骗你是小猫咪 2636aac9ca
test: fix ui test base trigger (#27380)
* test: ui test with github action

* remove site dependOn

* use job

* reset yaml
2020-10-27 14:14:34 +08:00

17 lines
495 B
YAML

version: '3'
services:
tests:
build:
context: .
dockerfile: Dockerfile.ui-test
volumes:
- './node_modules:/app/node_modules'
- './components:/app/components'
- './tests:/app/tests'
- './jest-stare:/app/jest-stare'
- './dist:/app/dist'
- '.jest.image.js:/app/.jest.image.js'
- './imageSnapshots:/app/imageSnapshots'
- './imageDiffSnapshots:/app/imageDiffSnapshots'
entrypoint: "jest --config .jest.image.js --no-cache -i"