2022-07-16 11:36:29 +00:00
|
|
|
name: "CI"
|
|
|
|
|
|
|
|
env:
|
2023-01-17 17:58:43 +00:00
|
|
|
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
|
|
|
|
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
|
2022-07-16 11:36:29 +00:00
|
|
|
FOUNDRY_PROFILE: "ci"
|
2023-01-17 17:58:43 +00:00
|
|
|
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
|
|
|
|
MNEMONIC: ${{ secrets.MNEMONIC }}
|
2022-07-16 11:36:29 +00:00
|
|
|
|
|
|
|
on:
|
2023-01-26 11:33:39 +00:00
|
|
|
workflow_dispatch:
|
2022-07-16 11:36:29 +00:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
|
|
|
|
jobs:
|
2023-02-07 11:05:27 +00:00
|
|
|
lint:
|
2022-07-16 11:36:29 +00:00
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
steps:
|
|
|
|
- name: "Check out the repo"
|
|
|
|
uses: "actions/checkout@v3"
|
|
|
|
|
|
|
|
- name: "Install Node.js"
|
|
|
|
uses: "actions/setup-node@v3"
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-10-15 19:30:41 +00:00
|
|
|
node-version: "lts/*"
|
2022-07-16 11:36:29 +00:00
|
|
|
|
|
|
|
- name: "Install the Node.js dependencies"
|
|
|
|
run: "yarn install --immutable"
|
|
|
|
|
|
|
|
- name: "Lint the contracts"
|
|
|
|
run: "yarn lint"
|
|
|
|
|
|
|
|
- name: "Add lint summary"
|
|
|
|
run: |
|
2023-02-07 11:05:27 +00:00
|
|
|
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 11:36:29 +00:00
|
|
|
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
|
|
|
|
|
2023-02-07 11:05:27 +00:00
|
|
|
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 11:36:29 +00:00
|
|
|
- name: "Show the Foundry config"
|
|
|
|
run: "forge config"
|
|
|
|
|
2023-02-07 11:05:27 +00:00
|
|
|
- name: "Generate a fuzz seed that changes weekly to avoid burning through RPC allowance"
|
2023-01-17 18:16:05 +00:00
|
|
|
run: >
|
|
|
|
echo "FOUNDRY_FUZZ_SEED=$(
|
|
|
|
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
|
|
|
|
)" >> $GITHUB_ENV
|
|
|
|
|
2022-07-16 11:36:29 +00:00
|
|
|
- name: "Run the tests"
|
|
|
|
run: "forge test"
|
|
|
|
|
|
|
|
- name: "Add test summary"
|
|
|
|
run: |
|
2023-02-07 11:05:27 +00:00
|
|
|
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
|
2022-07-16 11:36:29 +00:00
|
|
|
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
|