mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-01 16:12:31 +03:00
edee69bc07
Co-authored-by: Charles Bochet <charles@twenty.com>
20 lines
422 B
YAML
20 lines
422 B
YAML
name: CI Docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request_target:
|
|
jobs:
|
|
docs-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "18"
|
|
- name: Docs / Install Dependencies
|
|
run: cd docs && yarn
|
|
- name: Docs / Build Documentation
|
|
run: cd docs && yarn build
|