We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf8e35 commit e822265Copy full SHA for e822265
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: Docusaurus Build Check
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ build:
11
+ name: Build Docusaurus Site
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
22
23
+ node-version: '18'
24
+ cache: yarn
25
26
+ - name: Install dependencies
27
+ run: yarn install --frozen-lockfile
28
29
+ - name: Build website
30
+ run: yarn build
0 commit comments