Skip to content

feat(frontend): migrate DiscordIntegration, AgentCard, AdminUsers, Ap… #290

feat(frontend): migrate DiscordIntegration, AgentCard, AdminUsers, Ap…

feat(frontend): migrate DiscordIntegration, AgentCard, AdminUsers, Ap… #290

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main, v1.0.x ]
pull_request:
branches: [ main, v1.0.x ]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: |
npm ci --include=dev
cd backend
npm ci --include=dev
cd ../frontend
npm install --legacy-peer-deps
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30