Skip to content

feat(payments): Lemon Squeezy + Solana providers — one-time split & native auto-pull subs (#280) #18

feat(payments): Lemon Squeezy + Solana providers — one-time split & native auto-pull subs (#280)

feat(payments): Lemon Squeezy + Solana providers — one-time split & native auto-pull subs (#280) #18

Workflow file for this run

name: CI
on:
pull_request:
push:
branches-ignore: ["master"]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install
run: npm ci
# Lint is non-blocking: the repo has a large pre-existing lint baseline
# (~800 errors). Surfaced for visibility but does not fail the build. The
# pre-commit hook (lint-staged) keeps NEW/changed files clean going
# forward; clearing the legacy baseline is tracked separately.
- name: Lint (non-blocking)
run: npm run lint
continue-on-error: true
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test:unit