Skip to content

fix(extract-code-examples): three Python parser fixes (streaming wrapper, path-param wrapper, request body extraction) #8

fix(extract-code-examples): three Python parser fixes (streaming wrapper, path-param wrapper, request body extraction)

fix(extract-code-examples): three Python parser fixes (streaming wrapper, path-param wrapper, request body extraction) #8

name: Test JS Actions
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Bun/TypeScript actions with their own package.json + bun.lock + tests.
# Only add JS-based actions here — other action types (shell-only
# composites, Docker actions, reusable workflows) have their own
# validation patterns and don't fit this matrix.
action:
- extract-code-examples
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
- name: Install dependencies
working-directory: ${{ matrix.action }}
run: bun install --frozen-lockfile
- name: Run tests
working-directory: ${{ matrix.action }}
run: bun run test