95 lines
2.2 KiB
YAML
Raw Normal View History

2022-07-16 14:36:29 +03:00
name: "CI"
env:
API_KEY_ALCHEMY: ${{ secrets.API_KEY_ALCHEMY }}
2022-07-16 14:36:29 +03:00
FOUNDRY_PROFILE: "ci"
on:
workflow_dispatch:
2022-07-16 14:36:29 +03:00
pull_request:
push:
branches:
- "main"
jobs:
lint:
2022-07-16 14:36:29 +03:00
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
2023-02-07 20:10:50 +02:00
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"
2022-07-16 14:36:29 +03:00
2023-03-10 13:45:41 +02:00
- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
2023-03-28 19:08:53 +03:00
version: "8"
2023-03-10 13:45:41 +02:00
2022-07-16 14:36:29 +03:00
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
2023-03-10 13:45:41 +02:00
cache: "pnpm"
2022-10-15 22:30:41 +03:00
node-version: "lts/*"
2022-07-16 14:36:29 +03:00
- name: "Install the Node.js dependencies"
2023-03-10 13:45:41 +02:00
run: "pnpm install"
2022-07-16 14:36:29 +03:00
- name: "Lint the contracts"
2023-03-10 13:45:41 +02:00
run: "pnpm lint"
2022-07-16 14:36:29 +03:00
- 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@v3"
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"
- name: "Build the contracts and print their size"
run: "forge build --sizes"
- name: "Add build summary"
run: |
echo "## Build result" >> $GITHUB_STEP_SUMMARY
2022-07-16 14:36:29 +03:00
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
test:
needs: ["lint", "build"]
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"
2022-07-16 14:36:29 +03:00
- name: "Show the Foundry config"
run: "forge config"
- name: "Generate a fuzz seed that changes weekly to avoid burning through RPC allowance"
run: >
echo "FOUNDRY_FUZZ_SEED=$(
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
)" >> $GITHUB_ENV
2022-07-16 14:36:29 +03:00
- name: "Run the tests"
run: "forge test"
- name: "Add test summary"
run: |
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
2022-07-16 14:36:29 +03:00
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY