feat: implement exponential smooth pinch to zoom #1480
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| working-directory: ./desktop-app | |
| strategy: | |
| matrix: | |
| os: [macos-latest] | |
| fail-fast: false | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js and NPM | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: ${{ !env.ACT && 'yarn' || '' }} # Disable cache for nektos/act | |
| cache-dependency-path: ./desktop-app/yarn.lock | |
| - name: yarn install | |
| run: | | |
| yarn install --network-timeout 120000 | |
| - name: Build | |
| run: yarn run build | |
| - name: Lint, typecheck and unit test | |
| run: | | |
| yarn run lint | |
| yarn exec tsc | |
| yarn test | |
| - name: E2E Tests | |
| run: yarn test:e2e | |
| env: | |
| CI: true | |
| E2E_TEST: true | |
| E2E_HEADLESS: true | |
| - name: Upload E2E Report | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: desktop-app/e2e/playwright-report/ | |
| retention-days: 14 | |
| - name: Package | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: yarn run package |