Skip to content

messages: fix count in tab pt 3 #3708

messages: fix count in tab pt 3

messages: fix count in tab pt 3 #3708

Workflow file for this run

name: CI (Test and Build)
on: pull_request
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version-file: ./ui/.nvmrc
- name: Install Dependencies
run: npm ci
working-directory: ./ui
- name: Run Lint
run: npm run lint
working-directory: ./ui
- name: Run Tests
run: npm run test -- run
working-directory: ./ui
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: ./ui
- name: Run E2E Tests for Groups
run: npm run e2e
working-directory: ./ui
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./ui/playwright-report/
retention-days: 30
- name: Build
run: npm run build
working-directory: ./ui