Skip to content

[REFACTOR AND UPGRADE] Rainbowkit -> Web3Modal #22

[REFACTOR AND UPGRADE] Rainbowkit -> Web3Modal

[REFACTOR AND UPGRADE] Rainbowkit -> Web3Modal #22

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- develop
pull_request:
jobs:
vitest:
runs-on: ubuntu-latest
environment: dev
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v3
# Set up the required Node.js version
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test