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 36fd522 commit 97a98a7Copy full SHA for 97a98a7
.github/workflows/ci.yml
@@ -10,6 +10,11 @@ concurrency:
10
cancel-in-progress: true
11
12
jobs:
13
+ links: # Slow workflow to run in parallel to all other jobs from start
14
+ name: Linkspector
15
+ permissions:
16
+ contents: read
17
+ uses: ./.github/workflows/links.yml
18
lints: # fast lints
19
name: Lints
20
permissions:
@@ -23,5 +28,5 @@ jobs:
23
28
webpage-build:
24
29
25
30
contents: read
26
- needs: lints
31
+ needs: [lints, links]
27
32
uses: ./.github/workflows/webpage-build.yml
.github/workflows/lints.yml
@@ -1,10 +1,6 @@
1
on:
2
workflow_call:
3
4
- links:
5
- permissions:
6
- contents: read
7
- uses: ./.github/workflows/links.yml
8
commit:
9
name: Commit messages
0 commit comments