Skip to content

docs: no-op README tweak (verification of access, build/tests, and PR flow) #391

docs: no-op README tweak (verification of access, build/tests, and PR flow)

docs: no-op README tweak (verification of access, build/tests, and PR flow) #391

Workflow file for this run

name: Node Test CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# build against all active LTS and latest node
node-version: [18.x, 20.x, latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test