File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 99jobs :
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
Original file line number Diff line number Diff line change 99jobs :
1010 run-misspell :
1111 runs-on : ubuntu-22.04
12-
12+
1313 steps :
1414 - name : check out code
1515 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments