Skip to content

Update @types/react to version 19.0.4 #2892

Update @types/react to version 19.0.4

Update @types/react to version 19.0.4 #2892

Workflow file for this run

name: Test Coveralls
on:
workflow_dispatch:
push:
jobs:
coveralls:
name: Coveralls
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 'latest'
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Use Node.js 22.x
uses: actions/setup-node@v4.1.0
with:
node-version: '22'
cache: 'pnpm'
- name: pnpm install, pnpm test:coverage
run: |
pnpm install
pnpm test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}