-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 1 KB
/
docs.yml
File metadata and controls
35 lines (30 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: 📝 Documentation CI
on:
workflow_call:
jobs:
run-tests:
runs-on: ubuntu-latest
# Set a reasonable timeout, 120x shorter than GitHub's default 6 hours
timeout-minutes: 5
strategy:
matrix:
node: [22]
name: 📝 🔢 Run TypeDoc with Node.js Version ${{ matrix.node }}
steps:
- name: 📂 Check out Git repository
uses: actions/checkout@v4
#- name: 🛠️ Set up Node.js
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
- name: 🛠️ Set up Bun.sh
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
#- name: 📦 Install Node.js dependencies with Node.js
# run: npm ci
- name: 📦 Install Node.js dependencies with Bun
run: bun install
- name: 🏗️ 📝 Build Project Documentation
run: bun run docs
#TODO: Need to run dependency-version-badge and edit the readme file here as well.