Allow settleTrade
when paused or frozen
#2210
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
deployment-scripts: | |
name: 'Deployment Scripts' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn devchain & | |
env: | |
MAINNET_RPC_URL: https://eth-mainnet.alchemyapi.io/v2/${{ secrets.ALCHEMY_MAINNET_KEY }} | |
- run: yarn deploy:run --network localhost | |
env: | |
SKIP_PROMPT: 1 | |
lint: | |
name: 'Lint Checks' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn lint | |
plugin-tests: | |
name: 'Plugin Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:plugins | |
- name: 'Cache hardhat network fork' | |
uses: actions/cache@v3 | |
with: | |
path: cache/hardhat-network-fork | |
key: hardhat-network-fork-${{ runner.os }}-${{ hashFiles('test/integration/fork-block-numbers.ts') }} | |
restore-keys: | | |
hardhat-network-fork-${{ runner.os }}- | |
hardhat-network-fork- | |
- run: yarn test:plugins:integration | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
TS_NODE_SKIP_IGNORE: true | |
MAINNET_RPC_URL: https://eth-mainnet.alchemyapi.io/v2/${{ secrets.ALCHEMY_MAINNET_KEY }} | |
p0-tests: | |
name: 'P0 tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:p0 | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
p1-tests: | |
name: 'P1 Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:p1 | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
scenario-tests: | |
name: 'Scenario Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:scenario | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
extreme-tests: | |
name: 'Extreme Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:extreme | |
- name: 'Cache hardhat network fork' | |
uses: actions/cache@v3 | |
with: | |
path: cache/hardhat-network-fork | |
key: hardhat-network-fork-${{ runner.os }}-${{ hashFiles('test/integration/fork-block-numbers.ts') }} | |
restore-keys: | | |
hardhat-network-fork-${{ runner.os }}- | |
hardhat-network-fork- | |
- run: yarn test:extreme:integration | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
TS_NODE_SKIP_IGNORE: true | |
MAINNET_RPC_URL: https://eth-mainnet.alchemyapi.io/v2/${{ secrets.ALCHEMY_MAINNET_KEY }} | |
integration-tests: | |
name: 'Integration Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- name: 'Cache hardhat network fork' | |
uses: actions/cache@v3 | |
with: | |
path: cache/hardhat-network-fork | |
key: hardhat-network-fork-${{ runner.os }}-${{ hashFiles('test/integration/fork-block-numbers.ts') }} | |
restore-keys: | | |
hardhat-network-fork-${{ runner.os }}- | |
hardhat-network-fork- | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn test:integration | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
TS_NODE_SKIP_IGNORE: true | |
MAINNET_RPC_URL: https://eth-mainnet.alchemyapi.io/v2/${{ secrets.ALCHEMY_MAINNET_KEY }} |