salesloft-ci-integration
Set up CI/CD pipelines for SalesLoft integrations with GitHub Actions. Use when automating SalesLoft integration tests, validating OAuth tokens, or running cadence sync validation in CI. '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill salesloft-ci-integration --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# SalesLoft CI Integration ## Overview GitHub Actions workflows for testing SalesLoft API integrations: unit tests with mocked responses, integration tests against the live API, and OAuth token validation. ## Instructions ### Step 1: GitHub Actions Workflow ```yaml # .github/workflows/salesloft-ci.yml name: SalesLoft Integration on: push: branches: [main] pull_request: jobs: unit-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: '20', cache: 'npm' } - run: npm ci - run: npm test -- --coverage - uses: actions/upload-artifact@v4 with: { name: coverage, path: coverage/ } integration-tests: runs-on: ubuntu-latest if: github.event_name == 'push' && github.ref == 'refs/heads/main' env: SALESLOFT_API_KEY: ${{ secrets.SALESLOFT_TEST_API_KEY }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: '20', cache: 'npm' } - run: npm ci - name: Verify SalesLoft connectivity run: | curl -sf -H "Authorization: Bearer $SALESLOFT_API_KEY" \ https://api.salesloft.com/v2/me.json | jq '.data.email' - run: npm run test:integration ``` ### Step 2: Configure Secrets ```bash # Store test API key (read-only s
- Overview
- Instructions
- Step 1: GitHub Actions Workflow
- Step 2: Configure Secrets
- Step 3: Integration Test Structure
- Step 4: Pre-merge Validation
- Error Handling
- Resources
- Next Steps
Store test API key (read-only scoped) gh secret set SALESLOFT_TEST_API_KEY --body "your-test-token" For webhook testing gh secret set SALESLOFT_WEBHOOK_SECRET --body "your-webhook-secret"
What does the salesloft-ci-integration skill do?
Set up CI/CD pipelines for SalesLoft integrations with GitHub Actions. Use when automating SalesLoft integration tests, validating OAuth tokens, or running cadence sync validation in CI. '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill salesloft-ci-integration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.