Skip to content

Commit 9672e37

Browse files
committed
Fix indentation in docs-validation.yml
1 parent 9a0be64 commit 9672e37

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

.github/workflows/docs-validation.yml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -12,53 +12,53 @@ on:
1212
- main
1313

1414
jobs:
15-
link-check:
16-
name: Broken link checker
17-
runs-on: ubuntu-latest
15+
link-check:
16+
name: Broken link checker
17+
runs-on: ubuntu-latest
1818

19-
steps:
20-
- name: Checkout code
21-
uses: actions/checkout@v4
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v4
2222

23-
- name: Set up Node.js
24-
uses: actions/setup-node@v4
25-
with:
26-
node-version: "20"
27-
cache: "pnpm"
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: "20"
27+
cache: "pnpm"
2828

29-
- name: Install dependencies
30-
run: pnpm install --frozen-lockfile
29+
- name: Install dependencies
30+
run: pnpm install --frozen-lockfile
3131

32-
- name: Build static site
33-
run: pnpm build
32+
- name: Build static site
33+
run: pnpm build
3434

35-
- name: Set up Rust
36-
uses: actions-rs/toolchain@v1
37-
with:
38-
toolchain: stable
35+
- name: Set up Rust
36+
uses: actions-rs/toolchain@v1
37+
with:
38+
toolchain: stable
3939

40-
- name: Install lychee
41-
run: cargo install lychee
40+
- name: Install lychee
41+
run: cargo install lychee
4242

43-
- name: Check links
44-
run: lychee --verbose --no-progress './out/**/*.html'
43+
- name: Check links
44+
run: lychee --verbose --no-progress './out/**/*.html'
4545

46-
code-validate:
47-
name: Code snippet and GraphQL validation
48-
runs-on: ubuntu-latest
49-
steps:
50-
- uses: actions/checkout@v4
46+
code-validate:
47+
name: Code snippet and GraphQL validation
48+
runs-on: ubuntu-latest
49+
steps:
50+
- uses: actions/checkout@v4
5151

52-
- uses: actions/setup-node@v4
53-
with:
54-
node-version: "20"
55-
cache: "pnpm"
52+
- uses: actions/setup-node@v4
53+
with:
54+
node-version: "20"
55+
cache: "pnpm"
5656

57-
- name: Install dependencies
58-
run: pnpm install --frozen-lockfile
57+
- name: Install dependencies
58+
run: pnpm install --frozen-lockfile
5959

60-
- name: Run validation w/ annotations
61-
run: pnpm lint:docs:ci
60+
- name: Run validation w/ annotations
61+
run: pnpm lint:docs:ci
6262

63-
- name: Validate code snippets
64-
run: pnpm validate:snippets
63+
- name: Validate code snippets
64+
run: pnpm validate:snippets

0 commit comments

Comments
 (0)