fix: 修正 install node 步骤的 working-directory 并使用阿里云镜像源

This commit is contained in:
hhs
2026-06-13 11:41:08 +08:00
parent c5c9bf802f
commit 3d7d7d190c

View File

@@ -15,7 +15,10 @@ jobs:
working-directory: backend
steps:
- name: Install Node.js (for checkout action)
run: apk add --no-cache nodejs
run: |
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
apk add --no-cache nodejs
working-directory: /
- uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"