Skip to content

Merge branch 'testnet' into feature/kyc-ui-fixes #3101

Merge branch 'testnet' into feature/kyc-ui-fixes

Merge branch 'testnet' into feature/kyc-ui-fixes #3101

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-24.04
env:
INFURA_KEY: ${{ secrets.INFURA_KEY }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
- name: Enable Corepack before setting up Node
run: corepack enable
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.3.0
- name: Install dependencies
run: yarn --immutable
- name: 🔍 Type check
run: yarn run typeCheck
- name: 🧹 Lint code
run: yarn run lint
- name: 🧪 Run tests
run: yarn run test