Docs - Add document for connector #101
Workflow file for this run
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: Build DBML docs | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'dbml-homepage/**' | |
jobs: | |
build: | |
name: Build Docusaurus | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: dbml-homepage | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Setup Node environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: yarn | |
cache-dependency-path: ./dbml-homepage/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build source code | |
run: yarn build |