build(deps): bump the all-npm-dependencies group across 1 directory with 25 updates #828
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: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6.0.10 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| cache: pnpm | |
| node-version: latest | |
| - name: install dependencies | |
| run: pnpm install | |
| - name: install playwright browsers | |
| run: pnpm --filter @metacubexd/ui exec playwright install --with-deps chromium | |
| - name: build with mock mode | |
| run: pnpm --filter @metacubexd/ui build:mock | |
| - name: run e2e tests | |
| run: pnpm --filter @metacubexd/ui test:e2e |