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 15628d1 commit da0cea4Copy full SHA for da0cea4
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+ - '*'
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
18
+ # We are still using Node 10 for performance reasons
19
+ # Asciidoctor.js performance are not great on Node > 10
20
+ - name: Use Node.js 10
21
+ uses: actions/setup-node@v1
22
+ with:
23
+ node-version: '10'
24
+ - run: npm ci
25
+ - run: npm t
0 commit comments