feat(docs): add inbound integration page to documentation #7911
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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - canary | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| build-and-test: | |
| runs-on: buildjet-4vcpu-ubuntu-2204 | |
| outputs: | |
| cache-hit: ${{ steps.pnpm-cache.outputs.cache-hit }} | |
| container: | |
| image: node:22 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: pnpm setup | |
| uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0 | |
| - name: Install packages | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Build | |
| run: pnpm build | |
| # We include the environment variables here so that the cache for turborepo | |
| # is not invalidated and builds are re-ran | |
| env: | |
| SPAM_ASSASSIN_HOST: ${{ secrets.SPAM_ASSASSIN_HOST }} | |
| SPAM_ASSASSIN_PORT: ${{ secrets.SPAM_ASSASSIN_PORT }} | |
| - name: Run Tests | |
| run: pnpm test | |
| env: | |
| SPAM_ASSASSIN_HOST: ${{ secrets.SPAM_ASSASSIN_HOST }} | |
| SPAM_ASSASSIN_PORT: ${{ secrets.SPAM_ASSASSIN_PORT }} |