You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Most `npm` operations are replaced with `yarn`, which generally has better behavior. However, steps like publish that write to the NPM registry are left to `npm`, which currently handles these tasks best.
11 lines
245 B
Bash
Executable File
11 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# script which is run by the travis build (after `yarn test`).
|
|
#
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
set -ev
|
|
|
|
scripts/travis/build.sh
|
|
CHROME_BIN='/usr/bin/google-chrome-stable' yarn test
|