We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3c36f2 + ef93bec commit 0d8c0c0Copy full SHA for 0d8c0c0
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: Docs Test
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ test-docs:
9
+ name: Test docs
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
15
+ - name: Install pnpm
16
+ uses: pnpm/action-setup@v2
17
+ with:
18
+ run_install: true
19
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v3
22
23
+ node-version: 18
24
+ cache: pnpm
25
26
+ - name: Build test
27
+ env:
28
+ NODE_OPTIONS: --max_old_space_size=4096
29
+ run: pnpm docs:build
0 commit comments