Skip to content

Better signup error handling #70

Better signup error handling

Better signup error handling #70

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install
run: |
pnpm install --frozen-lockfile --prefer-offline
- name: Copy .env
run: |
cp .env.example .env
working-directory: packages/interface
- name: Build
run: |
pnpm run build