mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
1fda735222
This replaces Riot with Element in various CI scripts, modules, parameters, etc. This _should_ be the last major rebranding pass (hopefully). Fixes https://github.com/vector-im/element-web/issues/14894
12 lines
287 B
Bash
Executable file
12 lines
287 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# script which is run by the CI build (after `yarn test`).
|
|
#
|
|
# clones element-web develop and runs the tests against our version of react-sdk.
|
|
|
|
set -ev
|
|
|
|
scripts/ci/layered.sh
|
|
cd ../element-web
|
|
yarn build:genfiles # so the tests can run. Faster version of `build`
|
|
yarn test
|