Skip to content

Adding Arf USDC migration pool #149

Adding Arf USDC migration pool

Adding Arf USDC migration pool #149

Workflow file for this run

name: Huma Monorepo CI
on:
pull_request:
types: [opened, synchronize]
branches: ["develop", "master"]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint all
run: yarn lint:all
- name: Build all
run: yarn build:all
- name: Unit tests
run: yarn test:all
- name: Generate docs
run: yarn docs:all
- name: Check for uncommitted changes
run: |
# Check for changes after build/docs
git diff
# git diff --exit-code --quiet || { git status --porcelain; exit 1; }