From 767c18b204d3b15f5850d71733ed54785dd740a0 Mon Sep 17 00:00:00 2001 From: karashiiro <49822414+karashiiro@users.noreply.github.com> Date: Fri, 28 May 2021 02:28:58 -0700 Subject: [PATCH] Create documentation deployment action --- .github/workflows/documentation.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml new file mode 100644 index 0000000..0559d1b --- /dev/null +++ b/.github/workflows/documentation.yml @@ -0,0 +1,18 @@ +name: Generate documentation + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js 14.x + uses: actions/setup-node@v2 + with: + node-version: 14.x + - run: npm run docs:deploy