Compare commits

...

3 Commits

Author SHA1 Message Date
31dfabd882 Merge pull request 'develop' (#21) from develop into main
All checks were successful
Backend CI / ci (push) Successful in 1m4s
Frontend CI / ci (push) Successful in 27s
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/21
2026-06-13 11:42:08 +08:00
fc8b67be1a Merge pull request 'fix: 修正 install node 步骤的 working-directory 并使用阿里云镜像源' (#20) from build/actions into develop
All checks were successful
Backend CI / ci (pull_request) Successful in 1m11s
Frontend CI / ci (pull_request) Successful in 30s
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/20
2026-06-13 11:41:47 +08:00
hhs
3d7d7d190c fix: 修正 install node 步骤的 working-directory 并使用阿里云镜像源 2026-06-13 11:41:08 +08:00

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"