Skip to content

Commit acf18d8

Browse files
author
Carsten König
committed
revert
1 parent 5cd31e3 commit acf18d8

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,5 @@ jobs:
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

Makefile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
CI ?=
2-
CI_IMAGE=ghcr.io/cars10/elasticvue_ci:latest
32

43
build_docker_ci:
5-
docker build -f docker/Dockerfile_ci -t ${CI_IMAGE} .
4+
docker build -f docker/Dockerfile_ci -t elasticvue-ci .
65

76
ci: 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

1312
build_tauri:
1413
yarn tauri:build

0 commit comments

Comments
 (0)