We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9589e17 commit a1a699eCopy full SHA for a1a699e
.github/workflows/test-preview.yml
@@ -25,23 +25,25 @@ jobs:
25
runs-on: ubuntu-latest
26
27
steps:
28
- - name: Set up Node.js
29
- uses: actions/setup-node@v4
30
- with:
31
- node-version: '20.18.0'
32
- cache: 'yarn'
33
34
- # Step 2: Check out the repository
+ # Step 1: Check out the repository
35
- name: Check out docs repo
36
uses: actions/checkout@v4
37
with:
38
repository: ClickHouse/clickhouse-docs
39
path: ./
40
+ # Step 2: Setup node
+ - name: Set up Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: '20.18.0'
41
+ cache: 'yarn'
42
+
43
# Debug: List files in the working directory
44
- name: List files
45
run: ls -la
-
46
47
# Step 3: Download reference docs
48
- name: Download Reference Docs
49
run: |
0 commit comments