Skip to content

chore(deps): bump yaml from 2.3.4 to 2.8.3 #9823

chore(deps): bump yaml from 2.3.4 to 2.8.3

chore(deps): bump yaml from 2.3.4 to 2.8.3 #9823

Workflow file for this run

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