Skip to content

Commit 817c956

Browse files
committed
test: change interop test to run mocha instead of mocha npm script
since package.json contains a "mocha" script/task this was running this task with the usual tests done on every PR instead of the actually intended interop tests. Also removes the on-push trigger
1 parent e9037ba commit 817c956

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/interop-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
on:
22
schedule:
33
- cron: "30 5 * * *"
4-
push:
54
jobs:
65
interop:
76
runs-on: ubuntu-latest
@@ -19,4 +18,4 @@ jobs:
1918
- run: BROWSER=${{matrix.browserA}} BVER=${{matrix.bver}} ./node_modules/travis-multirunner/setup.sh
2019
- run: BROWSER=${{matrix.browserB}} BVER=${{matrix.bver}} ./node_modules/travis-multirunner/setup.sh
2120
- run: Xvfb :99 &
22-
- run: BROWSER_A=${{matrix.browserA}} BROWSER_B=${{matrix.browserB}} BVER=${{matrix.bver}} DISPLAY=:99.0 npm run mocha test/interop/connection.js
21+
- run: BROWSER_A=${{matrix.browserA}} BROWSER_B=${{matrix.browserB}} BVER=${{matrix.bver}} DISPLAY=:99.0 node_modules/.bin/mocha test/interop/connection.js

0 commit comments

Comments
 (0)