Skip to content

build(deps): bump @testing-library/jest-dom from 5.17.0 to 6.6.2 #5086

build(deps): bump @testing-library/jest-dom from 5.17.0 to 6.6.2

build(deps): bump @testing-library/jest-dom from 5.17.0 to 6.6.2 #5086

Workflow file for this run

name: Continous Integration
on:
push:
pull_request:
branches:
- master
jobs:
check:
name: Check types and lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Check types
run: npx tsc --noEmit --noErrorTruncation --pretty false --incremental false
- name: Run eslint
run: npx eslint .
unit-test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run tests
run: npm test -- --coverage
- name: Upload code coverage
uses: actions/upload-artifact@v4
with:
name: code-coverage
path: coverage
e2e-test:
name: Run E2E tests
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build project
run: npm run build
- name: Run Playwright tests
run: npm run test:e2e
- name: Upload test report
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: |
test-results/
playwright-report/
retention-days: 30