mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
3404521d5d
Do `npm install` on js-sdk rather than `npm run build`, which will hopefully mean that `browserify` gets installed before we try to run it. The README says we should use `npm install` for the react-sdk too, so let's do that, and bring the travis and jenkins builds into sync with the README.
8 lines
201 B
YAML
8 lines
201 B
YAML
language: node_js
|
|
node_js:
|
|
- 6 # node v6, to match jenkins
|
|
install:
|
|
- npm install
|
|
- (cd node_modules/matrix-js-sdk && npm install)
|
|
- (cd node_modules/matrix-react-sdk && npm install)
|