feat: add semantic ci (#56670)

* feat: add semantic ci

* fix: version

* ci: move version step into test:semantic and run in test workflow
This commit is contained in:
高艳兵
2026-01-20 14:30:35 +08:00
committed by GitHub
parent edf65d3eeb
commit 8574b941a7
2 changed files with 10 additions and 1 deletions

View File

@@ -52,6 +52,15 @@ jobs:
- run: ut
- run: ut test:node
test-semantic:
name: test-semantic
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- uses: utooland/setup-utoo@v1
- run: ut
- run: ut test:semantic
test-react-latest:
name: test-react-latest
strategy:

View File

@@ -88,7 +88,7 @@
"test:dekko": "tsx ./tests/dekko/index.test.ts",
"test:image": "cross-env MOCK_USE_ID=false jest --config .jest.image.js --no-cache -i -u --forceExit",
"test:node": "npm run version && jest --config .jest.node.js --no-cache",
"test:semantic": "jest --config .jest.semantic.js --no-cache",
"test:semantic": "npm run version && jest --config .jest.semantic.js --no-cache",
"test:package-diff": "antd-tools run package-diff",
"test:site": "jest --config .jest.site.js --no-cache",
"test:site-update": "npm run site && npm run test:site -- -u",