refactor(all): rename SignedPayload to Transaction (#395) #1
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: Build | |
on: | |
pull_request: | |
paths: | |
- chain/** | |
push: | |
branches: | |
- main | |
jobs: | |
chain: | |
name: Build Chain | |
runs-on: ubuntu-latest | |
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@v2 | |
# - name: Cache Docker images | |
# uses: ScribeMD/[email protected] | |
# with: | |
# key: docker-${{ runner.os }}-${{ hashFiles('chain/Dockerfile') }} | |
- name: Forge Build chain/contracts | |
run: make forge-build | |
- name: Build Rollup | |
run: make rollup-build |