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.
npm test
1 parent 32d785b commit a7813daCopy full SHA for a7813da
.github/workflows/ci_antora.yml
@@ -19,6 +19,6 @@ jobs:
19
node-version: '14.x'
20
- name: Install dependencies
21
run: npm install
22
- - name: Run build script
23
- run: npm run build
+ - name: Run test script
+ run: npm test
24
package.json
@@ -2,7 +2,8 @@
2
"name": "decidim-documentation",
3
"private": true,
4
"scripts": {
5
- "build": "antora antora-playbook.yml $@"
+ "build": "antora antora-playbook.yml $@",
6
+ "test": "errlog=$(mktemp) && npm run build &2> $errlog && if [ -e $errlog ] ; then exit 1 ; else exit 0 ; fi"
7
},
8
"devDependencies": {
9
"@antora/cli": "^3.0.0",
0 commit comments