Skip to content

Bump typedoc from 0.26.4 to 0.26.8 #281

Bump typedoc from 0.26.4 to 0.26.8

Bump typedoc from 0.26.4 to 0.26.8 #281

Workflow file for this run

name: PR Builder
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
name: Node.js Build ${{ matrix.node }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [ 18.x, 20.x, 22.x ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test