Skip to content

Commit 2187b2c

Browse files
committed
chore: Speed & reduce tests for CI investigating.
1 parent 2e210fe commit 2187b2c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
webdriverio_tests_tip_of_tree_v12:
1717
name: WebdriverIO tests (against tip-of-tree core develop)
18-
timeout-minutes: 10
18+
# timeout-minutes: 10
1919
runs-on: ${{ matrix.os }}
2020

2121
strategy:
@@ -60,13 +60,19 @@ jobs:
6060
npm link blockly
6161
cd ..
6262
63-
- name: Run tests
63+
- name: Build tests
6464
run: |
6565
cd main
66+
npm run wdio:clean
67+
npm run wdio:build
68+
69+
- name: Run tests (up to 50 times)
70+
run: |
71+
cd test/webdriverio/test
6672
for i in $(seq 1 50);
6773
do
6874
echo "Attempt $i"
69-
npm run test:ci
75+
npx mocha --timeout 30000 dist
7076
done
7177
7278
webdriverio_tests:

0 commit comments

Comments
 (0)