Skip to content

infra: introduce and use .nvmrc (#46) #259

infra: introduce and use .nvmrc (#46)

infra: introduce and use .nvmrc (#46) #259

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm test