@@ -28,10 +28,10 @@ jobs:
28
28
- name : Create DB Root
29
29
run : mkdir tmp/dbroot
30
30
31
- - name : Start QuestDB
32
- run : ./tmp/questdb-*-rt-linux-x86-64/bin/questdb.sh start -d ./tmp/dbroot
33
- env :
34
- QDB_DEV_MODE_ENABLED : " true"
31
+ # - name: Start QuestDB
32
+ # run: ./tmp/questdb-*-rt-linux-x86-64/bin/questdb.sh start -d ./tmp/dbroot
33
+ # env:
34
+ # QDB_DEV_MODE_ENABLED: "true"
35
35
36
36
- uses : actions/setup-node@v4
37
37
with :
@@ -47,17 +47,14 @@ jobs:
47
47
- name : Build @questdb/web-console
48
48
run : yarn workspace @questdb/web-console run build
49
49
50
- - name : Run bundle watcher on @questdb/web-console
51
- run : yarn workspace @questdb/web-console bundlewatch
50
+ # - name: Run @questdb/web-console unit tests
51
+ # run: yarn workspace @questdb/web-console run test:prod
52
52
53
- - name : Run @questdb/web-console unit tests
54
- run : yarn workspace @questdb /web-console run test:prod
53
+ # - name: Run browser-tests test - auth
54
+ # run: node packages /web-console/serve-dist.js & yarn workspace browser-tests test:auth
55
55
56
- - name : Run browser-tests test - auth
57
- run : node packages/web-console/serve-dist.js & yarn workspace browser-tests test:auth
58
-
59
- - name : Stop QuestDB
60
- run : ./tmp/questdb-*-rt-linux-x86-64/bin/questdb.sh stop
56
+ # - name: Stop QuestDB
57
+ # run: ./tmp/questdb-*-rt-linux-x86-64/bin/questdb.sh stop
61
58
62
59
- name : Start QuestDB, set auth credentials
63
60
run : ./tmp/questdb-*-rt-linux-x86-64/bin/questdb.sh start -d ./tmp/dbroot
66
63
QDB_HTTP_USER : " admin"
67
64
QDB_HTTP_PASSWORD : " quest"
68
65
66
+ - name : Run bundle watcher on @questdb/web-console
67
+ run : yarn workspace @questdb/web-console bundlewatch
68
+
69
69
- name : Run browser-tests test
70
- run : yarn workspace browser-tests test
70
+ run : |
71
+ node packages/web-console/serve-dist.js &
72
+ sleep 5 # Give the server time to start
73
+ for i in {1..10}; do
74
+ echo "=== Running editor tests - Iteration $i of 10 ==="
75
+ yarn workspace browser-tests test
76
+ done
71
77
72
78
- name : Print Log Files
73
79
if : success() || failure()
0 commit comments