We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc0b5c0 commit 198eb58Copy full SHA for 198eb58
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ name: Build Docusaurus
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: actions/setup-node@v4
17
18
+ node-version: 18
19
+ cache: yarn
20
21
+ - name: Install dependencies
22
+ run: yarn install --frozen-lockfile
23
+ - name: Build website
24
+ run: yarn build
0 commit comments