Skip to content

Billing: Services: Guard paywall callback effect against double execu… #251

Billing: Services: Guard paywall callback effect against double execu…

Billing: Services: Guard paywall callback effect against double execu… #251

Workflow file for this run

name: CI
"on":
push:
branches: [main, develop, release/v*, hotfix/v*]
pull_request:
branches: [main, develop, release/v*, hotfix/v*]
env:
NODE_VERSION: 24.x
PNPM_VERSION: 10.28.0
jobs:
lint-tsc-test:
name: "Lint, TSC & Test"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run Lint
run: pnpm lint
- name: Run TypeScript
run: pnpm tsc
- name: Run Tests
run: pnpm test