Skip to content

build(deps-dev): bump @types/node from 24.10.1 to 24.10.2 #1454

build(deps-dev): bump @types/node from 24.10.1 to 24.10.2

build(deps-dev): bump @types/node from 24.10.1 to 24.10.2 #1454

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
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
- run: npm run build -if-present
- run: npx eslint src/*.ts
- run: npm test
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js 20.x
uses: actions/setup-node@v6
with:
node-version: 20.x
- run: npm ci
- run: npm run build -if-present
- run: npm run c8
- run: npm run lcov
- run: npm run codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}