This commit is contained in:
test
2025-05-18 13:35:39 +08:00
parent 9b440046f3
commit ab8ecc48e3
+9 -1
View File
@@ -17,7 +17,15 @@ stages:
name: npm_install
displayName: deps_install
nodeVersion: 21.5.0
commands: npm config set registry https://registry.npmmirror.com && npm install && node fetchURLByWasm.js && git config user.name "Gitee流水线" && git config user.email "[email protected]" && git add . && git diff --quiet && git diff --staged --quiet || git commit -m "Update by Gitee流水线" && git push
commands:
- npm config set registry https://registry.npmmirror.com
- npm install
- node fetchURLByWasm.js
- git config user.name "Gitee流水线"
- git config user.email "[email protected]"
- git add .
- git diff --quiet && git diff --staged --quiet || git commit -m "Update by Gitee流水线"
- git push
strategy:
retry: '0'
timeout: 5