Skip to content

Update dependencies 20250115 #45

Update dependencies 20250115

Update dependencies 20250115 #45

Workflow file for this run

name: npm
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18.x', '20.x', '22.x']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: package-lock.json
node-version: ${{ matrix.node-version }}
registry-url: https://npm.pkg.github.com
- run: npm ci
- run: npm test
- uses: codecov/codecov-action@v5
if: matrix.node-version == '22.x'