Skip to content

allow adjustable tips #336

allow adjustable tips

allow adjustable tips #336

Workflow file for this run

name: Solend SDK CI
on:
push:
paths:
- "solend-sdk/**"
- ".github/workflows/solend-sdk.yml"
pull_request:
paths:
- "solend-sdk/**"
- ".github/workflows/solend-sdk.yml"
jobs:
lint_and_build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./solend-sdk
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache
- name: Lint
run: yarn lint
- name: Build
run: yarn build