fix: write static server function cache to correct output directory with Nitro #11
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: Changeset Preview | |
| on: | |
| pull_request: | |
| paths: | |
| - '.changeset/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| preview: | |
| name: Version Preview | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.1 | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Preview version bumps | |
| run: node scripts/preview-changeset-versions.mjs --output /tmp/changeset-preview.md | |
| - name: Post PR comment | |
| run: | | |
| node scripts/benchmarks/common/upsert-pr-comment.mjs \ | |
| --pr "${{ github.event.number }}" \ | |
| --body-file /tmp/changeset-preview.md \ | |
| --marker "<!-- changeset-version-preview -->" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |