Skip to content

chore: bump @types/node from 25.2.0 to 25.6.0 #81

chore: bump @types/node from 25.2.0 to 25.6.0

chore: bump @types/node from 25.2.0 to 25.6.0 #81

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Upgrade yarn
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Typecheck
run: yarn typecheck
- name: Build monorepo
run: yarn build
- name: Run unit tests
run: yarn test