Skip to content

Add tool/API based filtering to Adyen Mcp Server #285

Add tool/API based filtering to Adyen Mcp Server

Add tool/API based filtering to Adyen Mcp Server #285

Workflow file for this run

name: Node Build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
permissions:
contents: read
jobs:
node-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies & build
run: cd typescript && npm ci && npm run build