diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 60483dc5..a0b42b4f 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -51,6 +51,23 @@ jobs: path: dist/ if-no-files-found: error + docs: + name: Generate Documentation + runs-on: ubuntu-latest + steps: + - name: Checkout Project + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 + - name: Use Node.js v16 + uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3 + with: + node-version: 16 + cache: yarn + registry-url: https://registry.npmjs.org/ + - name: Install Dependencies + run: yarn --immutable + - name: Generate Documentation + run: yarn docs + Testing: name: Unit Tests runs-on: ubuntu-latest