feat: add FMP withdrawal info overlay to sDF vault #254
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: Run pr checks when a PR is opened | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
run-checks: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run Lint | |
env: | |
CI: true | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: pnpm lint | |
- name: Run Test | |
env: | |
CI: true | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: pnpm test | |
- name: Run Build | |
env: | |
CI: true | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: pnpm build |