Skip to content

fix: keep parent modal open when a nested dialog closes #343

fix: keep parent modal open when a nested dialog closes

fix: keep parent modal open when a nested dialog closes #343

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
# Version comes from package.json `packageManager` — do not
# also set `version:` here, pnpm/action-setup@v4 refuses both.
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 25
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint TypeScript
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Build application
run: pnpm build
- name: Upload build artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: web-build
path: build
retention-days: 7