Skip to content

chore(deps-dev): bump @types/node from 25.3.5 to 25.4.0 #1124

chore(deps-dev): bump @types/node from 25.3.5 to 25.4.0

chore(deps-dev): bump @types/node from 25.3.5 to 25.4.0 #1124

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push, pull_request]
permissions: {}
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: ["lts/-1", "lts/*", "node"]
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
node-version: "lts/-1"
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- run: npm run test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}