mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
9bccecf449
Also No need to cd into the symlink, can just go straight there
18 lines
331 B
Bash
Executable File
18 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
rm -r node_modules/matrix-js-sdk || true
|
|
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
|
|
|
|
cd matrix-js-sdk
|
|
npm install
|
|
cd ..
|
|
|
|
npm run test
|
|
./.travis-test-riot.sh
|
|
|
|
# run the linter, but exclude any files known to have errors or warnings.
|
|
npm run lintwithexclusions
|