Skip to content

fix(common): resolve broken adjacency graph import (#330) #24

fix(common): resolve broken adjacency graph import (#330)

fix(common): resolve broken adjacency graph import (#330) #24

Workflow file for this run

# This workflow will do a clean install of node dependencies and check if the docs can be build
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Docs
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: yarn
- name: Install Node.js dependencies
run: yarn --frozen-lockfile
- name: Build source
run: yarn build
- name: Build docs
run: yarn docs:build