Skip to content

Commit edd61cb

Browse files
authored
ci(e2e): pin npm to avoid docker failure (#1260)
* pin npm to avoid regression * empty commit
1 parent b741d97 commit edd61cb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/e2e/consensus/checks/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WORKDIR /home/ubuntu
1616
ENV PNPM_HOME=/home/ubuntu/.pnpm/bin
1717
ENV PATH="${PATH}:${PNPM_HOME}"
1818

19-
RUN npm install -g npm@latest \
19+
RUN npm install -g npm@~11.10.0 \
2020
&& su ubuntu -c "npm install --prefix=/home/ubuntu/.pnpm -g pnpm" \
2121
&& su ubuntu -c "export PNPM_HOME=/home/ubuntu/.pnpm/bin"
2222

tests/e2e/consensus/nodes/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WORKDIR /home/ubuntu
1616
ENV PNPM_HOME=/home/ubuntu/.pnpm/bin
1717
ENV PATH="${PATH}:${PNPM_HOME}"
1818

19-
RUN npm install -g npm@latest \
19+
RUN npm install -g npm@~11.10.0 \
2020
&& su ubuntu -c "npm install --prefix=/home/ubuntu/.pnpm -g pnpm" \
2121
&& su ubuntu -c "export PNPM_HOME=/home/ubuntu/.pnpm/bin"
2222

tests/e2e/snapshot/nodes/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WORKDIR /home/ubuntu
1616
ENV PNPM_HOME=/home/ubuntu/.pnpm/bin
1717
ENV PATH="${PATH}:${PNPM_HOME}"
1818

19-
RUN npm install -g npm@latest \
19+
RUN npm install -g npm@~11.10.0 \
2020
&& su ubuntu -c "npm install --prefix=/home/ubuntu/.pnpm -g pnpm" \
2121
&& su ubuntu -c "export PNPM_HOME=/home/ubuntu/.pnpm/bin"
2222

tests/e2e/sync/nodes/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WORKDIR /home/ubuntu
1616
ENV PNPM_HOME=/home/ubuntu/.pnpm/bin
1717
ENV PATH="${PATH}:${PNPM_HOME}"
1818

19-
RUN npm install -g npm@latest \
19+
RUN npm install -g npm@~11.10.0 \
2020
&& su ubuntu -c "npm install --prefix=/home/ubuntu/.pnpm -g pnpm" \
2121
&& su ubuntu -c "export PNPM_HOME=/home/ubuntu/.pnpm/bin"
2222

0 commit comments

Comments
 (0)