Skip to content

Make release health audit baseline based (#3) #16

Make release health audit baseline based (#3)

Make release health audit baseline based (#3) #16

Workflow file for this run

name: Public CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
concurrency:
group: public-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
public-check:
name: public-check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.32.1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Public smoke test
run: pnpm run test:public
- name: Public status-read workflow test
run: pnpm run test:status-read
- name: Public status-read example test
run: pnpm run test:status-read-example
- name: Public dry-run workflow test
run: pnpm run test:dry-run
- name: Public dry-run example test
run: pnpm run test:dry-run-example
- name: Public workflow matrix test
run: pnpm run test:workflow-matrix
- name: Public release index test
run: pnpm run test:release-index
- name: Dispatch prompt generation test
run: node scripts/test-dispatch-prompt-generate.mjs
- name: Dispatch prompt validation test
run: node scripts/test-dispatch-prompt-validate.mjs