We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8ea4db commit 11296d4Copy full SHA for 11296d4
.github/workflows/static.yml
@@ -0,0 +1,18 @@
1
+# serve static contents from the docs directory
2
+name: Static Pages
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - uses: actions/setup-node@v3
13
+ with:
14
+ node-version: 20.x
15
+ - run: npm install -g serve
16
+ - run: serve -s docs
17
+ env:
18
+ CI: false
0 commit comments