Skip to content

Update all npm dependencies (2025-10-27) #95

Update all npm dependencies (2025-10-27)

Update all npm dependencies (2025-10-27) #95

Workflow file for this run

name: "Tests"
on: [push, pull_request]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest]
node: ['lts/*', 'current']
name: "Node ${{ matrix.node }} (${{ matrix.platform }})"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: "Install dependencies"
run: npm ci
- name: "Run tests"
run: npm test