Skip to content

LimitOrder class

LimitOrder class #2

Workflow file for this run

name: PR validation
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Auth in GitHub private registry npm
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc
echo "@1inch:registry=https://npm.pkg.github.com" >> .npmrc
- name: Install Dependencies
run: pnpm install
- name: Linter
run: pnpm lint
- name: Types
run: pnpm lint:types
- name: Unit tests
run: pnpm test