Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,18 @@ jobs:

- name: Test packages
run: yarn test

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install snapshot testing dependencies
run: pip install -r integration/requirements.txt

- name: Verify snapshot tests
run: |
mcp-recorder verify \
--cassette integration/cassettes/list_tools.json \
--target-stdio "node packages/monday-api-mcp/dist/index.js" \
--target-env MONDAY_TOKEN=test-token
Loading