Skip to content

Bump @types/node from 25.9.2 to 25.9.3 in the minor-and-patch group #283

Bump @types/node from 25.9.2 to 25.9.3 in the minor-and-patch group

Bump @types/node from 25.9.2 to 25.9.3 in the minor-and-patch group #283

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
cache: npm
node-version-file: .nvmrc
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Check documentation
run: |
if [ -n "$(git status --porcelain docs)" ]; then
echo "::error::Build produced changes in docs/. Run 'npm run build' and commit the result."
git status --porcelain docs
git diff docs
exit 1
fi
- name: Unit Test
run: npm run test