Skip to content

Commit

Permalink
ci: add docs job for PRs (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealShadowNova authored Sep 6, 2022
1 parent 10b4fbb commit e9a029a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e9a029a

Please sign in to comment.