Skip to content

remove verify mandate tool #44

remove verify mandate tool

remove verify mandate tool #44

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies (monorepo)
run: npm ci --workspaces
- name: Build shared package
run: npm run build:shared
- name: Build truvera-api
run: npm run build:api
- name: Build wallet-server
run: npm run build --workspace=apps/wallet-server
- name: Run tests (truvera-api)
run: npm run test -- --run
working-directory: apps/truvera-api
- name: Run tests (mcp-shared)
run: npm run test -- --run
working-directory: packages/mcp-shared