Files
twenty/.github/workflows/ci-docs.yaml
Charles Bochet 41edcd81d8 Fix CI on main
2023-07-05 00:04:05 +02:00

22 lines
493 B
YAML

name: CI Docs
on:
push:
branches:
- main
pull_request_target:
jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref || github.ref_name }}
- 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