fix: modal closing with a custom animation, even if there are animated elements inside the modal #3250
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: Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test NodeJS ${{ matrix.node_version }} | |
| strategy: | |
| matrix: | |
| node_version: [20, 22] | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| if: github.event_name == 'pull_request' | |
| with: | |
| access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| node_version: ${{ matrix.node_version }} | |
| - name: Test | |
| uses: ./.github/actions/test | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| chromatic_token: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
| continuous-release: | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| node_version: 20 | |
| - run: pnpm release.prepare --parallel=false | |
| - run: pnpm dlx pkg-pr-new publish --pnpm ./dist/packages/kit-headless ./dist/packages/kit-styled ./dist/packages/cli ./dist/packages/utils | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN is provided automatically in any repository | |
| # pagefind: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Generate | |
| # run: npx pagefind --site dist/apps/website/client && cp -r dist/apps/website/client/pagefind apps/website/public/pagefind |