Skip to content

Commit d006c64

Browse files
authored
Add '[CI] Antora' workflow (#98)
1 parent b3d8fe8 commit d006c64

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci_antora.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "[CI] Antora"
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
paths:
8+
- "*"
9+
10+
jobs:
11+
check:
12+
name: Run Antora CI
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '14.x'
20+
- name: Install dependencies
21+
run: npm install
22+
- name: Run build script
23+
run: npm build
24+

0 commit comments

Comments
 (0)