mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
Do not generate a lockfile when running in CI
This commit is contained in:
parent
b916b789aa
commit
5fb7dbee3e
4 changed files with 7 additions and 7 deletions
|
@ -6,8 +6,8 @@ scripts/fetchdep.sh matrix-org matrix-js-sdk
|
||||||
|
|
||||||
pushd matrix-js-sdk
|
pushd matrix-js-sdk
|
||||||
yarn link
|
yarn link
|
||||||
yarn install $@
|
yarn install --pure-lockfile $@
|
||||||
popd
|
popd
|
||||||
|
|
||||||
yarn link matrix-js-sdk
|
yarn link matrix-js-sdk
|
||||||
yarn install $@
|
yarn install --pure-lockfile $@
|
||||||
|
|
|
@ -13,13 +13,13 @@
|
||||||
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
||||||
pushd matrix-js-sdk
|
pushd matrix-js-sdk
|
||||||
yarn link
|
yarn link
|
||||||
yarn install
|
yarn install --pure-lockfile
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Now set up the react-sdk
|
# Now set up the react-sdk
|
||||||
yarn link matrix-js-sdk
|
yarn link matrix-js-sdk
|
||||||
yarn link
|
yarn link
|
||||||
yarn install
|
yarn install --pure-lockfile
|
||||||
yarn reskindex
|
yarn reskindex
|
||||||
|
|
||||||
# Finally, set up element-web
|
# Finally, set up element-web
|
||||||
|
@ -27,6 +27,6 @@ scripts/fetchdep.sh vector-im element-web
|
||||||
pushd element-web
|
pushd element-web
|
||||||
yarn link matrix-js-sdk
|
yarn link matrix-js-sdk
|
||||||
yarn link matrix-react-sdk
|
yarn link matrix-react-sdk
|
||||||
yarn install
|
yarn install --pure-lockfile
|
||||||
yarn build:res
|
yarn build:res
|
||||||
popd
|
popd
|
||||||
|
|
|
@ -12,5 +12,5 @@ unzip -q element.zip
|
||||||
rm element.zip
|
rm element.zip
|
||||||
mv element-web-${ELEMENT_BRANCH} element-web
|
mv element-web-${ELEMENT_BRANCH} element-web
|
||||||
cd element-web
|
cd element-web
|
||||||
yarn install
|
yarn install --pure-lockfile
|
||||||
yarn run build
|
yarn run build
|
||||||
|
|
|
@ -4,4 +4,4 @@ set -e
|
||||||
./synapse/install.sh
|
./synapse/install.sh
|
||||||
# local testing doesn't need a Element fetched from master,
|
# local testing doesn't need a Element fetched from master,
|
||||||
# so not installing that by default
|
# so not installing that by default
|
||||||
yarn install
|
yarn install --pure-lockfile
|
||||||
|
|
Loading…
Reference in a new issue