Skip to content

Commit 6d82618

Browse files
authored
Merge pull request #5255 from rak-phillip/task/ci-frozen-lockfile
Add `--frozen-lockfile` to `yarn install` commands
2 parents ad94f55 + 98ed63e commit 6d82618

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else
99
cd `dirname $CWD`
1010
fi
1111

12-
yarn --pure-lockfile --non-interactive install
12+
yarn --frozen-lockfile --non-interactive install
1313
git submodule init
1414
git submodule update
1515
git status

scripts/patch-docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fi
6060

6161
if [ ! -d node_modules ]; then
6262
echo -e "${YELLOW}node_modules folder does not exist - running yarn install${RESET}"
63-
yarn install
63+
yarn install --frozen-lockfile
6464
echo -e "${CYAN}Building production build of the UI${RESET}"
6565
fi
6666

scripts/update-dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ git submodule update
1717
echo "Done"
1818

1919
echo -n "Installing Yarn packages..."
20-
yarn install
20+
yarn install --frozen-lockfile
2121
echo "Done"
2222

2323
echo "Done"

0 commit comments

Comments
 (0)