Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Bump @types/react from 18.3.5 to 18.3.12 #166

Bump @types/react from 18.3.5 to 18.3.12

Bump @types/react from 18.3.5 to 18.3.12 #166

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Check exports
run: npm run exports:check
- name: Check types
run: npm run types:check
- name: Check formatting
run: npm run format:check