Fix typo: useCutsomElement → useCustomElement (#172) #6
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: Motion E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| inputs: | |
| branch: | |
| type: string | |
| description: Branch to run tests on | |
| default: master | |
| browser: | |
| type: choice | |
| description: Browser to run tests in | |
| options: | |
| - chromium | |
| - firefox | |
| - webkit | |
| - all | |
| default: all | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| motion-e2e: | |
| name: Motion E2E (${{ github.event.inputs.browser || 'all' }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| ref: ${{ github.event.inputs.branch || github.ref }} | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| registry-url: https://registry.npmjs.org | |
| - name: Cache Yarn dependencies | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| with: | |
| path: | | |
| .yarn/cache | |
| .yarn/install-state.gz | |
| node_modules | |
| **/node_modules | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Enable Corepack | |
| run: | | |
| corepack enable | |
| corepack prepare yarn@4.10.3 --activate | |
| yarn set version 4.10.3 | |
| - name: Install dependencies | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: NPQ_PKG_MGR=yarn npx npq install --immutable | |
| - name: Build motion package | |
| run: yarn workspace @wix/motion build | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| id: playwright-cache | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ github.event.inputs.browser || 'all' }}-${{ hashFiles('packages/motion/package.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-playwright-${{ github.event.inputs.browser || 'all' }}- | |
| ${{ runner.os }}-playwright- | |
| - name: Install Playwright browsers (all) | |
| if: steps.playwright-cache.outputs.cache-hit != 'true' && (github.event.inputs.browser == 'all' || github.event.inputs.browser == '') | |
| working-directory: packages/motion | |
| run: npx playwright install --with-deps chromium firefox webkit | |
| - name: Install Playwright browsers (selected) | |
| if: steps.playwright-cache.outputs.cache-hit != 'true' && github.event.inputs.browser != 'all' && github.event.inputs.browser != '' | |
| working-directory: packages/motion | |
| run: npx playwright install --with-deps ${{ github.event.inputs.browser }} | |
| - name: Install Playwright system deps | |
| if: steps.playwright-cache.outputs.cache-hit == 'true' | |
| run: npx playwright install-deps ${{ github.event.inputs.browser != 'all' && github.event.inputs.browser != '' && github.event.inputs.browser || '' }} | |
| - name: Run E2E tests (selected browser) | |
| if: github.event.inputs.browser != 'all' && github.event.inputs.browser != '' | |
| working-directory: packages/motion | |
| run: npx playwright test --project=${{ github.event.inputs.browser }} | |
| - name: Run E2E tests (all browsers) | |
| if: github.event.inputs.browser == 'all' || github.event.inputs.browser == '' | |
| working-directory: packages/motion | |
| run: npx playwright test |