remove verify mandate tool #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |