Skip to content

fix: improved liquidation flow #471

fix: improved liquidation flow

fix: improved liquidation flow #471

Workflow file for this run

name: Check PR
on:
pull_request:
types: [opened, reopened, synchronize]
env:
HUSKY: 0
CI: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
cache: "yarn"
node-version-file: ".nvmrc"
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run forge tests
run: forge test
timeout-minutes: 10
- name: Perform checks
run: |
yarn prettier:ci