Skip to content

Commit c17261e

Browse files
tests on pipeline
1 parent 84378d6 commit c17261e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/stage-4-acceptance.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- name: "Save result"
109109
run: |
110110
echo "Nothing to save"
111-
test-integration:
111+
test-component:
112112
name: "Integration test"
113113
runs-on: ubuntu-latest
114114
needs: environment-set-up
@@ -118,7 +118,7 @@ jobs:
118118
uses: actions/checkout@v4
119119
- name: "Run integration test"
120120
run: |
121-
make test-integration
121+
make test-component
122122
- name: "Save result"
123123
run: |
124124
echo "Nothing to save"
@@ -157,7 +157,7 @@ jobs:
157157
[
158158
test-accessibility,
159159
test-contract,
160-
test-integration,
160+
test-component,
161161
test-load,
162162
test-security,
163163
test-ui-performance,

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ config:: _install-dependencies version # Configure development environment (main
9898
npm install
9999
(cd docs && make install && cd ..)
100100

101+
test-component:
102+
(cd tests && npm install && npm run test:component)
101103

102104
version:
103105
rm -f .version

0 commit comments

Comments
 (0)