ci: add back pnpm to debian Docker images (#1841)

- Close https://github.com/napi-rs/napi-rs/issues/1840
This commit is contained in:
LongYinan 2023-12-06 17:19:10 +08:00 committed by GitHub
parent 179854243c
commit 6d56595d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ RUN apt-get update && \
apt-get autoremove -y && \
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
rustup target add aarch64-unknown-linux-gnu && \
npm install -g npm yarn && \
npm install -g npm yarn pnpm && \
ln -sf /usr/bin/clang-16 /usr/bin/clang && \
ln -sf /usr/bin/clang++-16 /usr/bin/clang++ && \
ln -sf /usr/bin/lld-16 /usr/bin/lld && \

View file

@ -36,7 +36,7 @@ RUN apt-get update && \
ninja-build && \
apt-get autoremove -y && \
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
npm install -g npm yarn && \
npm install -g npm yarn pnpm && \
ln -sf /usr/bin/clang-16 /usr/bin/clang && \
ln -sf /usr/bin/clang++-16 /usr/bin/clang++ && \
ln -sf /usr/bin/lld-16 /usr/bin/lld && \