File tree 6 files changed +9
-6
lines changed
6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 38
38
run : sudo apt-get install -y protobuf-compiler
39
39
40
40
- name : Install dependencies
41
- run : pnpm install
41
+ run : pnpm install --frozen-lockfile
42
42
43
43
- name : Build packages
44
44
run : pnpm run build
Original file line number Diff line number Diff line change 35
35
run : sudo apt-get install -y protobuf-compiler
36
36
37
37
- name : Install dependencies
38
- run : pnpm install
38
+ run : pnpm install --frozen-lockfile
39
39
40
40
- name : Build packages
41
41
run : pnpm run build
Original file line number Diff line number Diff line change 4
4
init : |
5
5
nvm install v23.3.0
6
6
git checkout $(git describe --tags --abbrev=0)
7
- command : pnpm install && pnpm run build
8
-
7
+ command : pnpm install --frozen-lockfile && pnpm run build
8
+
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ COPY scripts ./scripts
24
24
COPY characters ./characters
25
25
26
26
# Install dependencies and build the project
27
- RUN pnpm install \
27
+ RUN pnpm install --frozen-lockfile \
28
28
&& pnpm build-docker \
29
29
&& pnpm prune --prod
30
30
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eliza" ,
3
3
"scripts" : {
4
+ "install" : " pnpm i -r --frozen-lockfile" ,
5
+ "i" : " pnpm i -r --frozen-lockfile" ,
6
+ "update" : " pnpm i -r" ,
4
7
"preinstall" : " npx only-allow pnpm" ,
5
8
"build" : " turbo run build --filter=!eliza-docs" ,
6
9
"build-docker" : " turbo run build" ,
Original file line number Diff line number Diff line change 21
21
22
22
# Install dependencies
23
23
echo -e " \033[1mInstalling dependencies...\033[0m"
24
- if ! pnpm i; then
24
+ if ! pnpm i --frozen-lockfile ; then
25
25
echo -e " \033[1;31mFailed to install dependencies\033[0m"
26
26
exit 1
27
27
fi
You can’t perform that action at this time.
0 commit comments