fix(ui): resolve blank Incentives section and upgrade to premium design #27
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Foundry | |
| run: | | |
| curl -L https://foundry.paradigm.xyz | bash | |
| source ~/.bashrc || true | |
| foundryup | |
| - name: Run tests | |
| run: forge test --no-match-contract "Benchmark*" -vv | |
| - name: Run Slither (dockerized) | |
| run: | | |
| docker run --rm -v "${{ github.workspace }}:/src" trailofbits/slither:latest /bin/sh -c "slither /src || true" | |
| - name: Build Docker Images (Dry Run) | |
| run: | | |
| docker compose build --no-cache |