We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kodey-ai/salesforce-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.yml•1.13 KiB
name: tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
jobs:
yarn-lockfile-check:
uses: salesforcecli/github-workflows/.github/workflows/lockFileCheck.yml@main
# Since the Windows unit tests take much longer, we run the linux unit tests first and then run the windows unit tests in parallel with NUTs
linux-unit-tests:
needs: yarn-lockfile-check
# uses: salesforcecli/github-workflows/.github/workflows/unitTestsLinux.yml@main
uses: ./.github/workflows/tempUnitTestsLinux.yml # temporary replacement
windows-unit-tests:
needs: linux-unit-tests
# uses: salesforcecli/github-workflows/.github/workflows/unitTestsWindows.yml@main
uses: ./.github/workflows/tempUnitTestsWindows.yml # temporary replacement
e2e:
# needs: linux-unit-tests
uses: ./.github/workflows/e2e.yml
secrets: inherit
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
command:
- 'yarn test:e2e'
provider:
- 'mcp-provider-dx-core'
fail-fast: false
with:
os: ${{ matrix.os }}
command: ${{ matrix.command }}
provider: ${{ matrix.provider }}