chore(deps): update dependency typedoc to v0.28.10 #2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- master* | |
pull_request: | |
branches: | |
- master* | |
jobs: | |
full_build: | |
name: Full Build (node ${{ matrix.node_version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: | |
- 18.x | |
- 20.x | |
- 22.x | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
# pnpm version is taken form package.json `packageManager` | |
- uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm run ci |