Skip to content

refactor: formal import AutomatedMarketMakerEnum #1368

refactor: formal import AutomatedMarketMakerEnum

refactor: formal import AutomatedMarketMakerEnum #1368

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs: # each workflow consists of 1+ jobs; by default, all jobs run in parallel
test: # Run tests.
runs-on: ubuntu-latest # host's operating system
steps: # each job consists of 1+ steps
- name: Checkout commit # download the code from triggering commit
uses: actions/checkout@v3
- name: Set Node.js 18.x # Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies 📦
run: yarn install --frozen-lockfile
- name: Build 🏗️
run: yarn build
- name: Run tests
run: yarn test
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
IS_SDK_TEST_MODE: 1