mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
Configure travis to test riot-web after building
This commit is contained in:
parent
128db1a679
commit
1b6735d729
2 changed files with 18 additions and 0 deletions
15
.travis-test-riot.sh
Executable file
15
.travis-test-riot.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# script which is run by the travis build (after `npm run test`).
|
||||
#
|
||||
# clones riot-web develop and runs the tests against our version of react-sdk.
|
||||
|
||||
set -ev
|
||||
|
||||
git clone --depth=1 https://github.com/vector-im/riot-web.git riot-web
|
||||
cd riot-web
|
||||
mkdir node_modules
|
||||
ln -s ../.. node_modules/matrix-react-sdk
|
||||
npm install
|
||||
(cd node_modules/matrix-js-sdk && npm install)
|
||||
npm run test
|
|
@ -4,3 +4,6 @@ node_js:
|
|||
install:
|
||||
- npm install
|
||||
- (cd node_modules/matrix-js-sdk && npm install)
|
||||
script:
|
||||
- npm run test
|
||||
- ./.travis-test-riot.sh
|
||||
|
|
Loading…
Reference in a new issue