Skip to content

Rename MoveFoundsModal to MoveFundsModal (#4408) #7213

Rename MoveFoundsModal to MoveFundsModal (#4408)

Rename MoveFoundsModal to MoveFundsModal (#4408) #7213

Workflow file for this run

name: CI
on:
push: { branches: [dev, main] }
pull_request:
jobs:
test:
timeout-minutes: 60
strategy:
matrix: { node: ["18.x"], os: [ubuntu-latest] }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn --immutable
- name: Verify linting
run: yarn lint
- name: Build Pioneer
run: yarn build
- name: Run tests
run: node --max_old_space_size=7000 --expose-gc $(yarn bin jest) --logHeapUsage --silent
working-directory: packages/ui