Skip to content

Update dependency wrangler to v4.131.2 #450

Update dependency wrangler to v4.131.2

Update dependency wrangler to v4.131.2 #450

Workflow file for this run

name: "Build Preview Deployment"
on:
pull_request:
types: [opened, synchronize]
jobs:
build-preview:
runs-on: "ubuntu-latest"
name: "Build Preview Site and Upload Build Artifact"
steps:
- name: "checkout"
uses: "actions/checkout@v7"
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: "24"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm --filter=web run build
- name: "upload build artifact"
uses: "actions/upload-artifact@v7"
with:
name: "preview-build"
path: "web/.svelte-kit"
include-hidden-files: true