File tree Expand file tree Collapse file tree 3 files changed +39
-55
lines changed Expand file tree Collapse file tree 3 files changed +39
-55
lines changed Original file line number Diff line number Diff line change 1+ name : PullRequestCI
2+
3+ env :
4+ # Force the stdout and stderr streams to be unbuffered
5+ PYTHONUNBUFFERED : 1
6+ CI : false
7+
8+ on : # yamllint disable-line rule:truthy
9+ pull_request :
10+ types :
11+ - synchronize
12+ - reopened
13+ - opened
14+
15+ # Cancel the previous wf run in PRs.
16+ concurrency :
17+ group : ${{ github.workflow }}-${{ github.ref }}
18+ cancel-in-progress : true
19+
20+ jobs :
21+ DocsCheck :
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : Checkout repository
25+ uses : actions/checkout@v3
26+
27+ - name : Set up Node.js
28+ uses : actions/setup-node@v3
29+ with :
30+ node-version : ' 20' # Adjust Node.js version as needed
31+ cache : ' yarn' # Cache yarn dependencies
32+
33+ - name : Install dependencies
34+ run : yarn install --frozen-lockfile
35+
36+ - name : Build
37+ run : yarn build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
33In this document, you will find a number of style guidelines for writing ClickHouse
44documentation. As documentation is a collective effort, these guidelines are
5- intended to help all of us ensure quality and consistency across our documentation.
5+ intended to help all of us ensure we maintain quality and consistency across our
6+ documentation.
67
78## YAML front matter
89
You can’t perform that action at this time.
0 commit comments