File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change 1616 runs-on : ubuntu-latest
1717 steps :
1818 - uses : actions/checkout@v4
19-
20- - name : login to ghcr
21- uses : docker/login-action@v3
22- with :
23- registry : ghcr.io
24- username : cars10
25- password : ${{ secrets.DOCKER_PASSWORD }}
26-
27- - name : pull ci image
28- run : |
29- docker pull ghcr.io/cars10/elasticvue_ci:latest
30-
3119 - name : run tests
3220 run : make CI=1 ci
Original file line number Diff line number Diff line change 11CI ?=
2- CI_IMAGE =ghcr.io/cars10/elasticvue_ci:latest
32
43build_docker_ci :
5- docker build -f docker/Dockerfile_ci -t ${CI_IMAGE} .
4+ docker build -f docker/Dockerfile_ci -t elasticvue-ci .
65
76ci : build_docker_ci
8- docker run --rm ${CI_IMAGE} yarn lint
9- docker run --rm ${CI_IMAGE} yarn tsc
10- docker run --rm ${CI_IMAGE} yarn test:unit
11- docker run --rm -e CI=" $( CI) " -v ./playwright-report-ci:/app/playwright-report ${CI_IMAGE} yarn test:e2e:all
7+ docker run --rm elasticvue-ci yarn lint
8+ docker run --rm elasticvue-ci yarn tsc
9+ docker run --rm elasticvue-ci yarn test:unit
10+ docker run --rm -e CI=" $( CI) " -v ./playwright-report-ci:/app/playwright-report elasticvue-ci yarn test:e2e:all
1211
1312build_tauri :
1413 yarn tauri:build
You can’t perform that action at this time.
0 commit comments