diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f524d4685d..6d66de3553 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/package.json b/package.json index f1ebbddf70..256a735ebd 100644 --- a/package.json +++ b/package.json @@ -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",