This repository was archived by the owner on Jul 31, 2026. It is now read-only.
chore(deps): upgrade semantic-release #905
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: Published Package Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - run: pnpm pack | |
| - run: pnpm link ../ # This links the root package into the integration project | |
| working-directory: integration | |
| - run: pnpm install --no-frozen-lockfile | |
| working-directory: integration | |
| - run: pnpm test | |
| working-directory: integration |