Skip to content

Fix CI actions

Fix CI actions #355

Workflow file for this run

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:

Check failure on line 51 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 51, Col: 9): Unexpected value '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