fix(touch): defer tap-select so swipe-to-nav isn't hijacked #24
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
| # Continuous Releases provided by https://pkg.pr.new | |
| # | |
| # Every push to main publishes preview packages keyed by commit SHA. Users | |
| # install with e.g. | |
| # npm i 'https://pkg.pr.new/Open-Athena/slidev/@slidev/cli@<sha>' | |
| # (any package manager). See README for the install pattern. | |
| name: CR (Continuous Releases) | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| cr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| - run: npm i -g @antfu/ni | |
| - run: nci | |
| - name: Build | |
| run: nr build | |
| - run: nlx pkg-pr-new publish './packages/create-app' './packages/client' './packages/create-theme' './packages/parser' './packages/slidev' './packages/types' --pnpm | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |