fix(plugin-git): support submodule #4656
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: e2e | |
| on: | |
| push: | |
| paths-ignore: | |
| - docs/ | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| e2e: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| bundler: | |
| - vite | |
| - webpack | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm ci | |
| - name: Install playwright chromium | |
| working-directory: ./e2e | |
| run: pnpm exec playwright install chromium | |
| - name: Build source files | |
| run: pnpm run bundle | |
| - name: E2E test (base /) | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: / | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| - name: E2E test (base /e2e/) | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: /e2e/ | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| e2e-os: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-latest | |
| - macos-latest | |
| bundler: | |
| - vite | |
| - webpack | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm ci | |
| - name: Install playwright chromium | |
| working-directory: ./e2e | |
| run: pnpm exec playwright install chromium | |
| - name: Build source files | |
| run: pnpm run bundle | |
| - name: E2E test (base /) | |
| # FIXME: Allow failing the test on Windows + Vite, as we believe there are bugs with Vite8 on windows sass resolving | |
| # See https://github.com/vitejs/vite/issues/22294 | |
| continue-on-error: ${{ matrix.os == 'windows-latest' && matrix.bundler == 'vite' }} | |
| timeout-minutes: 5 | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: / | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| - name: E2E test (base /e2e/) | |
| # FIXME: Allow failing the test on Windows + Vite, as we believe there are bugs with Vite8 on windows sass resolving | |
| # See https://github.com/vitejs/vite/issues/22294 | |
| continue-on-error: ${{ matrix.os == 'windows-latest' && matrix.bundler == 'vite' }} | |
| timeout-minutes: 5 | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: /e2e/ | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| e2e-node: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: | |
| - 22 | |
| # - 26 | |
| bundler: | |
| - vite | |
| - webpack | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm ci | |
| - name: Install playwright chromium | |
| working-directory: ./e2e | |
| run: pnpm exec playwright install chromium | |
| - name: Build source files | |
| run: pnpm run bundle | |
| - name: E2E test (base /) | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: / | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| - name: E2E test (base /e2e/) | |
| run: pnpm run test:e2e | |
| env: | |
| E2E_BASE: /e2e/ | |
| E2E_BUNDLER: ${{ matrix.bundler }} | |
| e2e-result: | |
| if: ${{ !cancelled() }} | |
| name: e2e result | |
| runs-on: ubuntu-latest | |
| needs: | |
| - e2e | |
| - e2e-os | |
| - e2e-node | |
| steps: | |
| - if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, | |
| 'cancelled') }} | |
| run: exit 1 |