This repository was archived by the owner on Dec 20, 2025. It is now read-only.
refactor: standardize parsers with improved type safety and validation #133
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Any Commit | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| # run only on code changes | |
| paths: | |
| - 'packages/*/src/**' | |
| push: | |
| branches: | |
| - '**' | |
| tags: | |
| - '!**' | |
| # pkg.pr.new only runs on code changes | |
| paths: | |
| - 'packages/*/src/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-environment | |
| - name: Build packages | |
| run: pnpm run build:packages | |
| - name: Release commit-release | |
| run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*' --no-template |