Skip to content

chore(deps): bump babel-plugin-react-compiler from 19.0.0-beta-ebf51a3-20250411 to 19.0.0-beta-714736e-20250131 #29

chore(deps): bump babel-plugin-react-compiler from 19.0.0-beta-ebf51a3-20250411 to 19.0.0-beta-714736e-20250131

chore(deps): bump babel-plugin-react-compiler from 19.0.0-beta-ebf51a3-20250411 to 19.0.0-beta-714736e-20250131 #29

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:unit
test-e2e:
timeout-minutes: 10
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Create Executable
run: npm run make
- name: Run Playwright tests
run: npm run test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 7