Bug: dropZone show wrong highlights when drag & drop on touch devices #949
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
static-analysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm i | |
- name: Build packages | |
run: npx turbo run build | |
- name: Check formatting | |
run: pnpx turbo run format:check | |
- name: Perform typecheck | |
run: pnpx turbo run lint:types | |
- name: Lint code | |
run: pnpx turbo run lint:eslint | |
unit-tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
FIGMA_TOKEN: 'FIGMA_TOKEN' | |
ADMIN_TOKENS_FILE_KEY: 'ADMIN_TOKENS_FILE_KEY' | |
PRIMITIVE_TOKENS_FILE_KEY: 'PRIMITIVE_TOKENS_FILE_KEY' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: unit | |
run: pnpx turbo run test:unit | |
circular-dependencies: | |
name: Check for circular dependencies (Madge) | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: madge | |
run: pnpm --filter @shopware-ag/meteor-admin-sdk run circular-dependencies | |
playwright-run: | |
name: Playwright Integration Tests | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
needs: | |
- circular-dependencies | |
- unit-tests | |
- static-analysis | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Install Playwright | |
run: npx playwright install | |
- name: Build packages | |
run: npx turbo run build | |
- name: Run e2e tests | |
run: pnpx turbo run test:e2e | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: nuxt-app--playwright-test-results | |
path: examples/nuxt-app/test-results/ | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: meteor-admin-sdk--playwright-test-results | |
path: packages/admin-sdk/playwright-report/ |