Skip to content

Commit 97a98a7

Browse files
committed
fix(ci): run Linkspector in parallel to everything else
Because this workflow is very slow in practice
1 parent 36fd522 commit 97a98a7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
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
1318
lints: # fast lints
1419
name: Lints
1520
permissions:
@@ -23,5 +28,5 @@ jobs:
2328
webpage-build:
2429
permissions:
2530
contents: read
26-
needs: lints
31+
needs: [lints, links]
2732
uses: ./.github/workflows/webpage-build.yml

.github/workflows/lints.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
on:
22
workflow_call:
33
jobs:
4-
links:
5-
permissions:
6-
contents: read
7-
uses: ./.github/workflows/links.yml
84
commit:
95
name: Commit messages
106
permissions:

0 commit comments

Comments
 (0)