chore(deps-dev): bump typescript from 5.8.3 to 6.0.3 #452
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
| # Build the static Pages bundle for preview branches without deploying it. | |
| name: Build Pages Preview | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/pages-preview.yml' | |
| - 'data/**' | |
| - 'fixtures/data/**' | |
| - 'package*.json' | |
| - 'packages/**' | |
| - 'scripts/build-pages-artifact.mjs' | |
| - 'turbo.json' | |
| push: | |
| branches-ignore: | |
| - main | |
| paths: | |
| - '.github/workflows/pages-preview.yml' | |
| - 'data/**' | |
| - 'fixtures/data/**' | |
| - 'package*.json' | |
| - 'packages/**' | |
| - 'scripts/build-pages-artifact.mjs' | |
| - 'turbo.json' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: pages-preview-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build Pages artifact | |
| run: npm run pages:build | |
| - name: Upload preview artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pages-preview-${{ github.run_id }} | |
| path: pages-dist | |
| if-no-files-found: error | |
| retention-days: 1 |