Skip to content

chore(deps+tests): combine dependabot PRs (#89,#90,#93,#94,#95,#96) + improve coverage to 99.4% #129

chore(deps+tests): combine dependabot PRs (#89,#90,#93,#94,#95,#96) + improve coverage to 99.4%

chore(deps+tests): combine dependabot PRs (#89,#90,#93,#94,#95,#96) + improve coverage to 99.4% #129

Workflow file for this run

# This workflow will do a clean installation 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:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6.3.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm test