Skip to content

Commit

Permalink
feat(ci): build documentation for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Sep 6, 2024
1 parent 573a26f commit 80309a1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,24 @@ jobs:
device-id: MediumPhone.arm
os-version-id: ${{ matrix.api }}
num-flaky-test-attempts: 4

build-documentation:
runs-on: ubuntu-latest
name: Build Documentation

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
working-directory: ./documentation
run: npm install

- name: Build site
working-directory: ./documentation
run: npm run build

0 comments on commit 80309a1

Please sign in to comment.