Skip to content

Update docs website #72

Update docs website

Update docs website #72

Workflow file for this run

name: Test website deployment to GitHub Pages
on:
pull_request:
branches:
- develop
paths:
- 'website/**'
jobs:
test-deploy:
if: github.event.pull_request.head.repo.full_name == github.repository
name: Test deployment
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build