feat: v3 boosted adds/removes #303
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: Checks | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
env: | |
NEXT_PUBLIC_BALANCER_API_URL: https://api-v3.balancer.fi/graphql | |
NEXT_PUBLIC_WALLET_CONNECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_ID }} | |
NEXT_PRIVATE_ALCHEMY_KEY: ${{ secrets.PRIVATE_ALCHEMY_KEY }} | |
NEXT_PRIVATE_DRPC_KEY: ${{ secrets.PRIVATE_DRPC_KEY }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache turbo build setup | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: ${{ runner.os }}-turbo-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-turbo- | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run build | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: pnpm run build | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run lint | |
run: pnpm lint | |
# TODO - re-enable prettier after formatting once switched from old repo | |
# - name: Run prettier | |
# run: pnpm prettier | |
# - name: Run stylelint | |
# run: pnpm stylelint | |
Unit-Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Run unit tests | |
run: pnpm test:unit | |
Integration-Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Set up foundry (includes anvil) | |
uses: foundry-rs/foundry-toolchain@v1 | |
# with: | |
# cache: false # Disable cache after foundry-toolchain upgrade | |
- name: Run integration tests | |
run: pnpm test:integration |