feat(pinch-zoom): improve pinch zoom functionality and support hand m… #127
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Connect your workspace on nx.app and uncomment this to enable task distribution. | |
# The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested | |
# - run: npx nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after="e2e-ci" | |
# Cache node_modules | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
# 缓存 Playwright 的浏览器 | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: playwright-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
playwright-${{ runner.os }}- | |
- run: npm ci | |
- uses: nrwl/nx-set-shas@v4 | |
# 安装 Playwright 浏览器和依赖 | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud | |
# - run: npx nx-cloud record -- echo Hello World | |
- run: npx nx affected -t lint test build --base=origin/develop --verbose | |
- run: npx nx affected --parallel 1 -t e2e-ci --base=origin/develop --verbose |