mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03: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.
7 lines
201 B
YAML
7 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)
|