mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-14 18:27:03 +02:00
12 lines
220 B
Bash
Executable File
12 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# script which is run by the CI build (after `yarn test`).
|
|
#
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
set -ev
|
|
|
|
scripts/ci/layered-riot-web.sh
|
|
cd ../riot-web
|
|
yarn test
|