We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f7673d commit ed473afCopy full SHA for ed473af
src/ci/docker/host-x86_64/mingw-check/Dockerfile
@@ -20,7 +20,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
20
RUN curl -sL https://nodejs.org/dist/v14.4.0/node-v14.4.0-linux-x64.tar.xz | tar -xJ
21
ENV PATH="/node-v14.4.0-linux-x64/bin:${PATH}"
22
# Install es-check
23
-RUN npm install es-check -g
+# Pin its version to prevent unrelated CI failures due to future es-check versions.
24
+RUN npm install [email protected] -g
25
26
COPY scripts/sccache.sh /scripts/
27
RUN sh /scripts/sccache.sh
0 commit comments