Skip to content

feat(docs): redesign the home page as a terminal-style landing #12

feat(docs): redesign the home page as a terminal-style landing

feat(docs): redesign the home page as a terminal-style landing #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Type-check
run: pnpm -C packages/stripekit typecheck
- name: Test
run: pnpm -C packages/stripekit test
- name: Build
run: pnpm -C packages/stripekit build
- name: Format check
run: pnpm format:check