From mindtickle-pack
Sets up GitHub Actions CI for MindTickle with npm test workflows on push/PR. Useful for sales training SaaS integrations requiring automated testing.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
```yaml
Deploys Node.js integrations to MindTickle platform using Docker container and API key. Trigger: 'mindtickle deploy integration'. See mindtickle-webhooks-events next.
Sets up GitHub Actions workflows for SalesLoft API integration testing: unit tests with Vitest, live API integration tests, OAuth validation, and cadence checks. Triggers on 'salesloft CI'.
Sets up GitHub Actions CI/CD workflows for Klaviyo API integrations, including Vitest unit tests, API integration tests, npm setup, and secret configuration.
Share bugs, ideas, or general feedback.
name: MindTickle Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm test
See mindtickle-deploy-integration.