Update dependency react to v19 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Docs | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./docs | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
push: | |
paths: | |
- 'docs/**' | |
jobs: | |
test-deploy: | |
name: Build GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: docs/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Test build website | |
run: yarn build |