Skip to content

fix(core): default to the production API host, keep single-URL overri… #69

fix(core): default to the production API host, keep single-URL overri…

fix(core): default to the production API host, keep single-URL overri… #69

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
id-token: write
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Upload coverage to Codecov
if: matrix.node == 22
uses: codecov/codecov-action@v5
with:
use_oidc: true
files: packages/cli/coverage/lcov.info,packages/core/coverage/lcov.info
- name: Typedoc
run: pnpm typedoc
- name: Build
run: pnpm build
- name: Publish dry-run
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.node == 22
run: pnpm --filter @inflowpayai/inflow publish --dry-run --no-git-checks