Skip to content

Commit 4f29f7a

Browse files
committed
fix(ci): make render workflow depend on check workflow
The documentation build should not run if static checks fail.
1 parent de1fa8d commit 4f29f7a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/gh-pages.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@ concurrency:
2121
cancel-in-progress: true
2222

2323
jobs:
24+
check:
25+
uses: ./.github/workflows/check.yaml
26+
2427
build:
2528
name: "Build Documentation"
29+
needs: check
2630
runs-on: "ubuntu-latest"
2731

2832
steps:

0 commit comments

Comments
 (0)