This repository was archived by the owner on Jun 26, 2026. It is now read-only.
docs(webhooks): enhance message event documentation and clarify email activity tracking #1468
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Checks | |
| on: | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| build-and-lint: | |
| name: Build and Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 | |
| with: | |
| run_install: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run linting | |
| run: | | |
| pnpm run lint | |
| pnpm run lint:mdx | |
| pnpm run format:check | |
| - name: Vale prose lint | |
| uses: vale-cli/vale-action@d89dee975228ae261d22c15adcd03578634d429c # v2.1.1 | |
| with: | |
| version: 3.9.1 | |
| files: content | |
| # Advisory only — annotations surface on the PR but don't fail CI | |
| # while the existing docs corpus still has many legacy violations. | |
| fail_on_error: false | |
| # Only flag lines touched by the PR to avoid reviewdog's | |
| # "too many annotations" failures on full-corpus scans. | |
| filter_mode: added | |
| reporter: github-pr-check | |
| - name: Build | |
| env: | |
| NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} | |
| CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}} | |
| NEXT_PUBLIC_SEGMENT_WRITE_KEY: ${{ secrets.NEXT_PUBLIC_SEGMENT_WRITE_KEY }} | |
| run: pnpm run build |