# Template: Build on feature/bugfix branches# Copy to: .github/workflows/feature-build.yml## Triggers on every push to feature/* or bugfix/* branches# Runs: compile + contract size check (fast feedback, no tests)
name: Feature/Bugfix Build
on: push: branches: - 'feature/**' - 'bugfix/**'
jobs: build: uses: Codehunters-IO/ci-templates/.github/workflows/contracts-main-pipeline.yml@main with: run_build: true secrets: inherit Contracts (Hardhat/Solidity)· Consumer template ·on: push
Contracts Feature Build
Template: Build on feature/bugfix branches Copy to: .github/workflows/feature-build.yml Triggers on every push to feature/* or bugfix/* branches Runs: compile + contract size check (fast feedback, no
templates/contracts-feature-build.yml