Skip to content

build(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1 #642

build(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1

build(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1 #642

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: format check
run: npm run prettier:check
- name: type check
run: npm run type:check
- name: lint
run: npm run lint -- --max-warnings 0
e2e:
needs: static
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e
env:
CI: true
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 10