From 5ef60afe8e0f52ae35c27f404237df55c598a6a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Pereira=20de=20Lucena?= Date: Mon, 23 May 2022 11:54:26 +0200 Subject: [PATCH] Add '[CI] Antora' workflow --- .github/workflows/ci_antora.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci_antora.yml diff --git a/.github/workflows/ci_antora.yml b/.github/workflows/ci_antora.yml new file mode 100644 index 0000000000..774d76b81d --- /dev/null +++ b/.github/workflows/ci_antora.yml @@ -0,0 +1,24 @@ +name: "[CI] Antora" +on: + push: + branches: + - master + pull_request: + paths: + - "*" + +jobs: + check: + name: Run Antora CI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '14.x' + - name: Install dependencies + run: npm install + - name: Run build script + run: npm build +