Skip to content

feat/dark-mode

feat/dark-mode #27

Workflow file for this run

name: Test Docs
on:
pull_request:
branches:
- main
paths:
- 'docs/**'
- 'website/**'
workflow_dispatch:
jobs:
test-docs:
name: Test Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache-dependency-path: ./website/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./website
- name: Test build website
run: yarn build
working-directory: ./website