diff --git a/.gitea/workflows/smart-contract-tests.yml b/.gitea/workflows/smart-contract-tests.yml index 6499456d..b1d9eb3d 100644 --- a/.gitea/workflows/smart-contract-tests.yml +++ b/.gitea/workflows/smart-contract-tests.yml @@ -56,12 +56,6 @@ jobs: # Install npm install --legacy-peer-deps 2>/dev/null || npm install - # Fix missing Hardhat dependencies for aitbc-token - if [[ "${{ matrix.project.name }}" == "aitbc-token" ]]; then - echo "Installing missing Hardhat dependencies..." - npm install --no-save "@nomicfoundation/hardhat-ignition@^0.15.16" "@nomicfoundation/ignition-core@^0.15.15" - fi - # Compile if [[ -f "hardhat.config.js" ]] || [[ -f "hardhat.config.ts" ]]; then npx hardhat compile @@ -125,12 +119,6 @@ jobs: echo "=== Linting $project ===" cd "$project" npm install --legacy-peer-deps 2>/dev/null || npm install - - # Fix missing Hardhat dependencies and formatting for aitbc-token - if [[ "$project" == "packages/solidity/aitbc-token" ]]; then - echo "Installing missing Hardhat dependencies..." - npm install --no-save "@nomicfoundation/hardhat-ignition@^0.15.16" "@nomicfoundation/ignition-core@^0.15.15" - fi if node -e "const pkg=require('./package.json'); process.exit(pkg.scripts && pkg.scripts.lint ? 0 : 1)"; then npm run lint