Skip to content

feat: add webhook handler for subscription activation and cancellatio… #6860

feat: add webhook handler for subscription activation and cancellatio…

feat: add webhook handler for subscription activation and cancellatio… #6860

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dependencies
run: bun install
- name: Run tests
run: bun vitest run --coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}