Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Bump @types/node from 22.19.2 to 25.0.1 #2713

Bump @types/node from 22.19.2 to 25.0.1

Bump @types/node from 22.19.2 to 25.0.1 #2713

Workflow file for this run

name: Build
on: [push, pull_request]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
node-version: [24.x]
experimental: [false]
include:
- node: 25.x
experimental: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js (NPMJS) ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:ci