Fix CI actions #355
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" | ||
env: | ||
FOUNDRY_PROFILE: "ci" | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "staging" | ||
jobs: | ||
lint: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "Check out the repo" | ||
uses: "actions/checkout@v4" | ||
- name: "Install Bun.sh" | ||
uses: oven-sh/setup-bun@v1 | ||
- name: "Install Foundry" | ||
uses: "foundry-rs/foundry-toolchain@v1" | ||
- name: "Install the Node.js dependencies" | ||
run: "bun install --immutable" | ||
- name: "Lint the contracts" | ||
run: "bun lint" | ||
- name: "Add lint summary" | ||
run: | | ||
echo "## Lint result" >> $GITHUB_STEP_SUMMARY | ||
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY | ||
build: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "Check out the repo" | ||
uses: "actions/checkout@v4" | ||
- name: "Install Bun.sh" | ||
uses: oven-sh/setup-bun@v1 | ||
- name: "Install Foundry" | ||
uses: "foundry-rs/foundry-toolchain@v1" | ||
- name: "Install the Node.js dependencies" | ||
run: "bun install --immutable" | ||
with: | ||
submodules: "recursive" | ||
- name: "Build the contracts and print their size" | ||
run: "forge build --sizes" | ||
- name: "Add build summary" | ||
run: | | ||
echo "## Build result" >> $GITHUB_STEP_SUMMARY | ||
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY | ||
test: | ||
needs: ["build"] | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "Check out the repo" | ||
uses: "actions/checkout@v4" | ||
with: | ||
submodules: "recursive" | ||
- name: "Install Bun.sh" | ||
uses: oven-sh/setup-bun@v1 | ||
- name: "Install Foundry" | ||
uses: "foundry-rs/foundry-toolchain@v1" | ||
- name: "Install the Node.js dependencies" | ||
run: "bun install --immutable" | ||
- name: "Run the tests" | ||
run: "forge test" | ||
- name: Run snapshot | ||
run: forge snapshot | ||
- name: "Add test summary" | ||
run: | | ||
echo "## Tests result" >> $GITHUB_STEP_SUMMARY | ||
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |