mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
0992341f87
* chore: docker update * chore: clean up * fix: lock stylelint version * Update package.json Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <1075746765@qq.com>
18 lines
545 B
YAML
18 lines
545 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'
|
|
- './jest-puppeteer.config.js:/app/jest-puppeteer.config.js'
|
|
- './imageSnapshots:/app/imageSnapshots'
|
|
- './imageDiffSnapshots:/app/imageDiffSnapshots'
|
|
entrypoint: "npm run test-image:docker"
|