ci: clean up CI workflows and fix package dependencies
Some checks failed
Integration Tests / test-service-integration (push) Successful in 2m16s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 25s
Package Tests / Python package - aitbc-core (push) Successful in 22s
Package Tests / Python package - aitbc-crypto (push) Successful in 14s
Package Tests / Python package - aitbc-sdk (push) Successful in 18s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 6s
Package Tests / JavaScript package - aitbc-token (push) Successful in 21s
Production Tests / Production Integration Tests (push) Failing after 10s
Python Tests / test-python (push) Failing after 2m41s
Security Scanning / security-scan (push) Failing after 46s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 16s
Smart Contract Tests / lint-solidity (push) Successful in 12s

- Simplified npm install commands in CI workflows by removing fallback logic
- Added aitbc-crypto local dependency installation for aitbc-sdk in package-tests.yml
- Removed aitbc-token specific Hardhat dependency workarounds from package-tests.yml
- Fixed bare except clause in agent_daemon.py to catch specific json.JSONDecodeError
- Moved aitbc-crypto from poetry.dependencies to standard dependencies in aitbc-sdk
- Fixed MyPy type errors in receip
This commit is contained in:
aitbc
2026-04-19 19:24:09 +02:00
parent 0fc735b802
commit 625c1b7812
29 changed files with 3386 additions and 3377 deletions

View File

@@ -12,23 +12,26 @@
"deploy": "hardhat run scripts/deploy.ts --network localhost"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^3.0.0",
"@nomicfoundation/hardhat-ethers": "^4.0.7",
"@nomicfoundation/hardhat-ignition-ethers": "^3.1.1",
"@nomicfoundation/hardhat-network-helpers": "^3.0.4",
"@nomicfoundation/hardhat-toolbox": "7.0.0-hh2",
"@nomicfoundation/hardhat-verify": "^3.0.13",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^4.3.11",
"@nomicfoundation/hardhat-ethers": "^4.0.0",
"@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^3.0.7",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.7",
"@nomicfoundation/hardhat-keystore": "^3.0.0",
"@nomicfoundation/hardhat-mocha": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.2",
"@nomicfoundation/hardhat-typechain": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^3.0.0",
"@nomicfoundation/ignition-core": "^3.0.7",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.30",
"chai": "^4.4.1",
"chai": "^5.1.2",
"ethers": "^6.16.0",
"hardhat": "^3.3.0",
"hardhat-gas-reporter": "^1.0.10",
"@prettier/plugin-solidity": "^1.3.1",
"mocha": "^11.0.0",
"prettier": "^3.2.5",
"solidity-coverage": "^0.8.4",
"prettier-plugin-solidity": "^2.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},