Skip to content

Update docs check #3616

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: PullRequestCI

env:
# Force the stdout and stderr streams to be unbuffered
PYTHONUNBUFFERED: 1
CI: false

on: # yamllint disable-line rule:truthy
pull_request:
types:
- synchronize
- reopened
- opened

# Cancel the previous wf run in PRs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
DocsCheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Adjust Node.js version as needed
cache: 'yarn' # Cache yarn dependencies

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build
run: yarn build
54 changes: 0 additions & 54 deletions .github/workflows/pull-request.yml

This file was deleted.

3 changes: 2 additions & 1 deletion contribute/style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

In this document, you will find a number of style guidelines for writing ClickHouse
documentation. As documentation is a collective effort, these guidelines are
intended to help all of us ensure quality and consistency across our documentation.
intended to help all of us ensure we maintain quality and consistency across our
documentation.

## YAML front matter

Expand Down