Skip to content

Commit 2f22405

Browse files
committed
add a rollup job, that we can use later to more easily stop publishing, should quality suffer
1 parent cee8288 commit 2f22405

3 files changed

Lines changed: 22 additions & 1 deletion

File tree

.github/workflows/all_analysis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Called by ci.yml to perform general linting
2+
# See: https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow
3+
name: All linting, sanity checks
4+
5+
on:
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
quality-okay:
11+
needs: run-markdownlint
12+
needs: run-misspell
13+
needs: run-sanitycheck
14+
15+
runs-on: ubuntu-22.04
16+
17+
steps:
18+
- name: Passed
19+
run: ls

.github/workflows/buildbundles.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
jobs:
1010
Generating-Bound-Versions:
1111
runs-on: ubuntu-latest
12+
needs: quality-okay
13+
1214
steps:
1315
- uses: actions/checkout@v4
1416
- uses: actions/setup-node@v4

.github/workflows/sanitycheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
run-misspell:
1111
runs-on: ubuntu-22.04
12-
12+
1313
steps:
1414
- name: check out code
1515
uses: actions/checkout@v4

0 commit comments

Comments
 (0)