Skip to content

feat: add extract-code-examples composite action #6

feat: add extract-code-examples composite action

feat: add extract-code-examples composite action #6

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Add new actions here as they're added at the repo root.
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