Skip to content

feat(webhooks): add suppression webhooks #1473

feat(webhooks): add suppression webhooks

feat(webhooks): add suppression webhooks #1473

Workflow file for this run

name: Smoke
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: smoke-${{ github.ref }}
cancel-in-progress: true
jobs:
smoke:
runs-on: depot-ubuntu-24.04-4
timeout-minutes: 30
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Build Node bundle
run: pnpm build
- name: Build pkg binary
run: pnpm exec pkg dist/cli.cjs --config package.json --compress Brotli --target node24-linux-x64 --output dist/resend
- name: Smoke test Node bundle
run: |
node dist/cli.cjs --version
node dist/cli.cjs --help
- name: Smoke test pkg binary
run: |
./dist/resend --version
./dist/resend --help