Skip to content

Add CI and Fix SIWE validation #1

Add CI and Fix SIWE validation

Add CI and Fix SIWE validation #1

Workflow file for this run

name: Run Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
working-directory: ./tests
run: npm ci
- name: Run tests
working-directory: ./tests
run: npm test