Skip to content

Commit afea0c1

Browse files
committed
chore: added tests
1 parent 7739e76 commit afea0c1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,26 @@ jobs:
5151
run: bash ci/build-docker.sh
5252
- name: "deploy: docker"
5353
run: bash ci/push-docker.sh
54+
55+
Component-test:
56+
runs-on: ubuntu-latest
57+
needs: [Docker]
58+
steps:
59+
- name: Download code
60+
uses: actions/download-artifact@v4
61+
with:
62+
name: code
63+
path: .
64+
- name: Execute component test
65+
run: bash ci/component-test.sh
66+
Performance-test:
67+
runs-on: ubuntu-latest
68+
needs: [Docker]
69+
steps:
70+
- name: Download code
71+
uses: actions/download-artifact@v4
72+
with:
73+
name: code
74+
path: .
75+
- name: Execute performance test
76+
run: bash ci/performance-test.sh

0 commit comments

Comments
 (0)