Skip to content

deps: bump @types/react from 18.3.3 to 18.3.4 in the react group #6974

deps: bump @types/react from 18.3.3 to 18.3.4 in the react group

deps: bump @types/react from 18.3.3 to 18.3.4 in the react group #6974

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
env:
NODE_OPTIONS: '--unhandled-rejections=strict'
jobs:
lint:
name: Code style
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci --verbose
- name: Check types
run: npm run typecheck
- name: Check code style
run: npm run lint
test:
name: Tests
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 22.x]
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run prod
- name: Run tests
run: npm run tests-only -- --coverage