chore(deps): bump the vue group across 1 directory with 15 updates #641
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: Package Previews | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| jobs: | |
| publish-previews: | |
| if: github.event.label.name == 'publish-pkg-preview' | |
| name: Publish Package Previews | |
| permissions: | |
| contents: read | |
| issues: read | |
| timeout-minutes: 10 | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: "pnpm" | |
| - name: install | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Build packages | |
| run: pnpm build --filter='./packages/*' | |
| - name: Publish package previews | |
| run: npx pkg-pr-new publish './packages/api-client' './packages/api-gen' './packages/cms-base-layer' './packages/composables' './packages/helpers' './packages/nuxt-module' |