Replace open
property on close
event with separate close
and closeAttempt
events in Dialogs and Drawers
#49
Workflow file for this run
This file contains 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: Build Preview Deployment | |
# cancel in-progress runs on new commits to same PR (github.event.number) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build site | |
run: pnpm build | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: preview-build | |
path: packages/svelte-ux/.svelte-kit/cloudflare |