Skip to content

Update dependency @types/react to ^19.2.14 #3004

Update dependency @types/react to ^19.2.14

Update dependency @types/react to ^19.2.14 #3004

Workflow file for this run

name: build
on:
push:
branches:
- "**"
pull_request:
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.19, 20.x, 22.x, 24.x, 25.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: ⏬ Install
run: |
npm ci
- name: ✨ Lint
run: |
npm run lint
- name: ✨ Typecheck
run: |
npm run typecheck
- name: πŸ§ͺ Test
run: |
npm test
- name: npm publish
uses: k-yle/npm-publish@v1
if: ${{ matrix.node-version == '24.x' }}