chore(deps): bump yaml from 2.3.4 to 2.8.3 #9823
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: Playwright Tests | |
| on: | |
| push: | |
| branches: [main, dev/*, hotfix/*] | |
| pull_request: | |
| branches: [main, dev/*, hotfix/*] | |
| jobs: | |
| test: | |
| timeout-minutes: 90 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9.1.3 | |
| run_install: | | |
| - recursive: true | |
| args: [--frozen-lockfile, --strict-peer-dependencies] | |
| - name: Install Playwright Browsers | |
| run: pnpm run e2e:setup | |
| - name: Run Designer Playwright tests | |
| run: pnpm run test:e2e:designer --grep @mock | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: designer-playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 | |
| chat-client-tests: | |
| name: Chat Client E2E Tests | |
| timeout-minutes: 90 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9.1.3 | |
| run_install: | | |
| - recursive: true | |
| args: [--frozen-lockfile, --strict-peer-dependencies] | |
| - name: Install Playwright Browsers | |
| run: pnpm run e2e:setup | |
| - name: Run Chat Client Playwright tests | |
| run: pnpm run test:e2e:chatClient --grep @mock | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: chat-client-playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |