Skip to content

build(deps-dev): bump @testing-library/jest-dom from 6.4.2 to 6.4.8 #39

build(deps-dev): bump @testing-library/jest-dom from 6.4.2 to 6.4.8

build(deps-dev): bump @testing-library/jest-dom from 6.4.2 to 6.4.8 #39

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, reopened]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Run tests
run: pnpm test -- --run
e2e:
name: e2e
timeout-minutes: 10
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.45.1-jammy
needs:
- test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run Playwright tests
run: pnpm exec playwright test
env:
HOME: /root
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30