Skip to content

Commit 82b4fe4

Browse files
committed
fix(ci): set nodeLinker to node-modules for musl builds
1 parent bf01ead commit 82b4fe4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
apk add --upgrade --no-cache curl nodejs npm --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main &&
5959
node -v &&
6060
npm install -g yarn --force &&
61-
rustup update stable &&
61+
yarn config set nodeLinker node-modules &&
6262
yarn build --target x86_64-unknown-linux-musl
6363
- host: macos-latest
6464
target: aarch64-apple-darwin
@@ -111,6 +111,7 @@ jobs:
111111
apk add --upgrade --no-cache curl nodejs npm --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main &&
112112
node -v &&
113113
npm install -g yarn --force &&
114+
yarn config set nodeLinker node-modules &&
114115
rustup update stable &&
115116
rustup target add aarch64-unknown-linux-musl &&
116117
yarn build --target aarch64-unknown-linux-musl

0 commit comments

Comments
 (0)