doc/md/hcldoc: add clickhouse dictionary #2172
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: CI - Documentation Website | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
docsite_ci: | |
name: verify build doesn't crash | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./doc/website | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Dependencies | |
run: npm install | |
- name: Build website | |
run: npm run build |