Skip to content

Commit 9fe2f7c

Browse files
committed
Add names to all pr-checks
1 parent 50de2e4 commit 9fe2f7c

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/pr-checks.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414

1515
jobs:
1616
lint-js:
17+
name: Lint
1718
runs-on: ubuntu-latest
1819

1920
steps:
@@ -30,6 +31,7 @@ jobs:
3031
run: .github/workflows/script/check-js.sh
3132

3233
check-node-modules:
34+
name: Check modules up to date
3335
runs-on: macos-latest
3436

3537
steps:
@@ -38,6 +40,7 @@ jobs:
3840
run: .github/workflows/script/check-node-modules.sh
3941

4042
npm-test:
43+
name: Unit Test
4144
needs: [check-js, check-node-modules]
4245
strategy:
4346
matrix:
@@ -50,6 +53,7 @@ jobs:
5053
run: npm run-script test
5154

5255
multi-language-repo_test-autodetect-languages:
56+
name: Autodetect language (multi)
5357
needs: [check-js, check-node-modules]
5458
runs-on: ubuntu-latest
5559

@@ -107,6 +111,7 @@ jobs:
107111
# Packaging test that runs against a javascript database
108112
# Specifying packs in the config file.
109113
test-packaging-javascript-config:
114+
name: Packaging Config JavaScript
110115
needs: [check-js, check-node-modules]
111116
runs-on: ubuntu-latest
112117

@@ -148,6 +153,7 @@ jobs:
148153
# Packaging test that runs against a javascript database
149154
# Specifying packs as an input.
150155
test-packaging-javascript-inputs:
156+
name: Packaging Inputs JavaScript
151157
needs: [check-js, check-node-modules]
152158
runs-on: ubuntu-latest
153159

@@ -191,6 +197,7 @@ jobs:
191197
# Packaging test that runs against a javascript database
192198
# Specifying packs in the config file and inputs.
193199
test-packaging-javascript-config-and-inputs:
200+
name: Packaging Inputs and Config JavaScript
194201
needs: [check-js, check-node-modules]
195202
runs-on: ubuntu-latest
196203

@@ -233,6 +240,7 @@ jobs:
233240
234241
# Tests a split workflow where database construction and query execution happen in different steps
235242
test-split-workflow:
243+
name: Split workflow
236244
needs: [check-js, check-node-modules]
237245
runs-on: ubuntu-latest
238246

@@ -287,6 +295,7 @@ jobs:
287295
288296
# Identify the CodeQL tool versions to integration test against.
289297
check-codeql-versions:
298+
name: Check CodeQL Versions
290299
needs: [check-js, check-node-modules]
291300
runs-on: ubuntu-latest
292301
outputs:
@@ -368,6 +377,7 @@ jobs:
368377
echo "::set-output name=versions::${VERSIONS_JSON}"
369378
370379
multi-language-repo_test-custom-queries-and-remote-config:
380+
name: Remote Config Custom Queries multi-language repo
371381
needs: [check-js, check-node-modules, check-codeql-versions]
372382
strategy:
373383
fail-fast: false
@@ -399,6 +409,7 @@ jobs:
399409

400410
# Currently is not possible to analyze Go in conjunction with other languages in macos
401411
multi-language-repo_test-go-custom-queries:
412+
name: Go custom queries multi-language repo
402413
needs: [check-js, check-node-modules, check-codeql-versions]
403414
strategy:
404415
fail-fast: false
@@ -433,6 +444,7 @@ jobs:
433444
TEST_MODE: true
434445

435446
go-custom-tracing:
447+
name: Go custom tracing
436448
needs: [check-js, check-node-modules, check-codeql-versions]
437449
strategy:
438450
fail-fast: false
@@ -468,6 +480,7 @@ jobs:
468480
TEST_MODE: true
469481

470482
go-custom-tracing-autobuild:
483+
name: Go autobuild custom tracing
471484
needs: [check-js, check-node-modules, check-codeql-versions]
472485
strategy:
473486
fail-fast: false
@@ -505,6 +518,7 @@ jobs:
505518
506519
# Ruby is in beta, so test it separately for now.
507520
multi-language-repo_test-ruby:
521+
name: Ruby multi-language
508522
needs: [check-js, check-node-modules, check-codeql-versions]
509523
strategy:
510524
fail-fast: false
@@ -545,6 +559,7 @@ jobs:
545559
fi
546560
547561
multi-language-repo_rubocop:
562+
name: Rubocop multi-language
548563
needs: [check-js, check-node-modules]
549564
runs-on: ubuntu-latest
550565

@@ -578,6 +593,7 @@ jobs:
578593
TEST_MODE: true
579594

580595
test-proxy:
596+
name: Proxy
581597
needs: [check-js, check-node-modules, check-codeql-versions]
582598
strategy:
583599
fail-fast: false
@@ -612,6 +628,7 @@ jobs:
612628
TEST_MODE: true
613629

614630
runner-analyze-javascript-ubuntu:
631+
name: Runner ubuntu javascript analyze
615632
needs: [check-js, check-node-modules]
616633
runs-on: ubuntu-latest
617634

@@ -639,6 +656,7 @@ jobs:
639656
TEST_MODE: true
640657

641658
runner-analyze-javascript-windows:
659+
name: Runner windows javascript analyze
642660
needs: [check-js, check-node-modules]
643661
runs-on: windows-latest
644662

@@ -662,6 +680,7 @@ jobs:
662680
TEST_MODE: true
663681

664682
runner-analyze-javascript-macos:
683+
name: Runner macos javascript analyze
665684
needs: [check-js, check-node-modules]
666685
runs-on: macos-latest
667686

@@ -685,6 +704,7 @@ jobs:
685704
TEST_MODE: true
686705

687706
runner-analyze-csharp-ubuntu:
707+
name: Runner ubuntu csharp analyze
688708
needs: [check-js, check-node-modules]
689709
runs-on: ubuntu-latest
690710

@@ -721,6 +741,7 @@ jobs:
721741
TEST_MODE: true
722742

723743
runner-analyze-csharp-windows:
744+
name: Runner windows csharp analyze
724745
needs: [check-js, check-node-modules]
725746
runs-on: windows-latest
726747

@@ -760,6 +781,7 @@ jobs:
760781
TEST_MODE: true
761782

762783
runner-analyze-csharp-macos:
784+
name: Runner macos csharp analyze
763785
needs: [check-js, check-node-modules]
764786
runs-on: macos-latest
765787

@@ -798,6 +820,7 @@ jobs:
798820

799821

800822
runner-analyze-csharp-autobuild-ubuntu:
823+
name: Runner ubuntu autobuild csharp analyze
801824
needs: [check-js, check-node-modules]
802825
runs-on: ubuntu-latest
803826

@@ -833,6 +856,7 @@ jobs:
833856
TEST_MODE: true
834857

835858
runner-analyze-csharp-autobuild-windows:
859+
name: Runner windows autobuild csharp analyze
836860
needs: [check-js, check-node-modules]
837861
runs-on: windows-latest
838862

@@ -869,6 +893,7 @@ jobs:
869893
TEST_MODE: true
870894

871895
runner-analyze-csharp-autobuild-macos:
896+
name: Runner macos autobuild csharp analyze
872897
needs: [check-js, check-node-modules]
873898
runs-on: macos-latest
874899

@@ -905,6 +930,7 @@ jobs:
905930
TEST_MODE: true
906931

907932
runner-upload-sarif:
933+
name: Runner upload sarif
908934
needs: [check-js, check-node-modules]
909935
runs-on: ubuntu-latest
910936

@@ -926,6 +952,7 @@ jobs:
926952
runner/dist/codeql-runner-linux upload --sarif-file src/testdata/empty-sarif.sarif --repository $GITHUB_REPOSITORY --commit $GITHUB_SHA --ref $GITHUB_REF --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }}
927953
928954
multi-language-repo_test-local-codeql:
955+
name: Local codeql multi-language repo
929956
needs: [check-js, check-node-modules, check-codeql-versions]
930957
runs-on: ubuntu-latest
931958

@@ -946,6 +973,7 @@ jobs:
946973
- uses: ./../action/analyze
947974

948975
test-javascript-source-root:
976+
name: Javascript source root
949977
needs: [check-js, check-node-modules]
950978
runs-on: ubuntu-latest
951979

0 commit comments

Comments
 (0)