feat: standardize CI/CD workflows across services #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: CI | |
# on: | |
# pull_request: | |
# paths: | |
# - evm/** | |
# push: | |
# paths: | |
# - evm/** | |
# branches: | |
# - main | |
# jobs: | |
# build-evm: | |
# name: Build (EVM) | |
# runs-on: namespace-profile-linux-8vcpu-16gb-cached | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Install Foundry | |
# uses: foundry-rs/foundry-toolchain@v1 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v3 | |
# - name: Build Rollup | |
# run: make rollup-build |