Skip to content

feat(docs): Project overview and spelling. #28

feat(docs): Project overview and spelling.

feat(docs): Project overview and spelling. #28

Workflow file for this run

name: "Docs check"
on:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
cache-dependency-path: ./web/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./web
- name: Build website
run: yarn build
working-directory: ./web