Skip to content

Commit 1e879f4

Browse files
committed
ci: 🎡 separate typedoc command into its own job
1 parent ace0c7a commit 1e879f4

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/pr.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,19 @@ jobs:
4444
- run: yarn test:cli:pack
4545
- run: yarn demo:json-patch
4646
- run: yarn demo:json-pointer
47+
typedoc:
48+
runs-on: ubuntu-latest
49+
strategy:
50+
matrix:
51+
node-version: [20.x]
52+
steps:
53+
- uses: actions/checkout@v3
54+
- name: Use Node.js ${{ matrix.node-version }}
55+
uses: actions/setup-node@v3
56+
with:
57+
node-version: ${{ matrix.node-version }}
58+
cache: yarn
59+
- run: yarn install --frozen-lockfile
4760
- run: yarn typedoc
48-
61+
62+

0 commit comments

Comments
 (0)