Skip to content

docs: clarify the purpose of timeoutEarlyInMillis on handling timeouts #406

docs: clarify the purpose of timeoutEarlyInMillis on handling timeouts

docs: clarify the purpose of timeoutEarlyInMillis on handling timeouts #406

Workflow file for this run

name: Tests (unit)
on:
pull_request:
env:
NODE_VERSION: 24.x # Not used. See jobs.unit.strategy.matrix.node-version
permissions:
contents: read
jobs:
unit:
name: Tests (unit)
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build --if-present
- name: Unit tests
run: |
npm run test:unit