This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
fix: sentry stack trace detection #3163
Workflow file for this run
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 | |
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_INFURA_KEY: ${{ secrets.NEXT_PRIVATE_INFURA_KEY }} | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 | |
- 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 | |
- name: Run integration tests | |
run: pnpm test:integration |