Skip to content

apollox fix usdc/usdt #552

apollox fix usdc/usdt

apollox fix usdc/usdt #552

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
NETWORK: 'arbitrum'
ARBITRUM_MAIN_KEY: ${{ vars.ARBITRUM_MAIN_KEY }}
ARBISCAN_API_KEY: ${{ vars.ARBISCAN_API_KEY }}
ALCHEMY_KEY: ${{ vars.ALCHEMY_KEY }}
OWNER_PKEY: ${{ vars.OWNER_PKEY }}
BORROWER_PKEY: ${{ vars.BORROWER_PKEY }}
EXECUTOR_PKEY: ${{ vars.EXECUTOR_PKEY }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install hardhat
- run: npx hardhat test --network hardhat