Skip to content

Commit 1785bbb

Browse files
committed
Add names to all pr-checks
1 parent a44b61d commit 1785bbb

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

.github/workflows/pr-checks.yml

Lines changed: 29 additions & 1 deletion
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:
@@ -26,10 +27,11 @@ jobs:
2627

2728
steps:
2829
- uses: actions/checkout@v2
29-
- name: Check generated JavaScript
30+
- name: Check generated JS
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 JS
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 JS
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 JS
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:
@@ -384,6 +393,7 @@ jobs:
384393
echo "::set-output name=versions::${VERSIONS_JSON}"
385394
386395
multi-language-repo_test-custom-queries-and-remote-config:
396+
name: Remote Config Custom Queries multi-language repo
387397
needs: [check-js, check-node-modules, check-codeql-versions]
388398
strategy:
389399
fail-fast: false
@@ -415,6 +425,7 @@ jobs:
415425

416426
# Currently is not possible to analyze Go in conjunction with other languages in macos
417427
multi-language-repo_test-go-custom-queries:
428+
name: Go custom queries multi-language repo
418429
needs: [check-js, check-node-modules, check-codeql-versions]
419430
strategy:
420431
fail-fast: false
@@ -449,6 +460,7 @@ jobs:
449460
TEST_MODE: true
450461

451462
go-custom-tracing:
463+
name: Go custom tracing
452464
needs: [check-js, check-node-modules, check-codeql-versions]
453465
strategy:
454466
fail-fast: false
@@ -484,6 +496,7 @@ jobs:
484496
TEST_MODE: true
485497

486498
go-custom-tracing-autobuild:
499+
name: Go autobuild custom tracing
487500
needs: [check-js, check-node-modules, check-codeql-versions]
488501
strategy:
489502
fail-fast: false
@@ -521,6 +534,7 @@ jobs:
521534
522535
# Ruby is in beta, so test it separately for now.
523536
multi-language-repo_test-ruby:
537+
name: Ruby multi-language
524538
needs: [check-js, check-node-modules, check-codeql-versions]
525539
strategy:
526540
fail-fast: false
@@ -561,6 +575,7 @@ jobs:
561575
fi
562576
563577
multi-language-repo_rubocop:
578+
name: Rubocop multi-language
564579
needs: [check-js, check-node-modules]
565580
runs-on: ubuntu-latest
566581

@@ -594,6 +609,7 @@ jobs:
594609
TEST_MODE: true
595610

596611
test-proxy:
612+
name: Proxy
597613
needs: [check-js, check-node-modules, check-codeql-versions]
598614
strategy:
599615
fail-fast: false
@@ -628,6 +644,7 @@ jobs:
628644
TEST_MODE: true
629645

630646
runner-analyze-javascript-ubuntu:
647+
name: Runner ubuntu JS analyze
631648
needs: [check-js, check-node-modules]
632649
runs-on: ubuntu-latest
633650

@@ -655,6 +672,7 @@ jobs:
655672
TEST_MODE: true
656673

657674
runner-analyze-javascript-windows:
675+
name: Runner windows JS analyze
658676
needs: [check-js, check-node-modules]
659677
runs-on: windows-latest
660678

@@ -678,6 +696,7 @@ jobs:
678696
TEST_MODE: true
679697

680698
runner-analyze-javascript-macos:
699+
name: Runner macos JS analyze
681700
needs: [check-js, check-node-modules]
682701
runs-on: macos-latest
683702

@@ -701,6 +720,7 @@ jobs:
701720
TEST_MODE: true
702721

703722
runner-analyze-csharp-ubuntu:
723+
name: Runner ubuntu C# analyze
704724
needs: [check-js, check-node-modules]
705725
runs-on: ubuntu-latest
706726

@@ -737,6 +757,7 @@ jobs:
737757
TEST_MODE: true
738758

739759
runner-analyze-csharp-windows:
760+
name: Runner windows C# analyze
740761
needs: [check-js, check-node-modules]
741762
runs-on: windows-latest
742763

@@ -776,6 +797,7 @@ jobs:
776797
TEST_MODE: true
777798

778799
runner-analyze-csharp-macos:
800+
name: Runner macos C# analyze
779801
needs: [check-js, check-node-modules]
780802
runs-on: macos-latest
781803

@@ -814,6 +836,7 @@ jobs:
814836

815837

816838
runner-analyze-csharp-autobuild-ubuntu:
839+
name: Runner ubuntu autobuild C# analyze
817840
needs: [check-js, check-node-modules]
818841
runs-on: ubuntu-latest
819842

@@ -849,6 +872,7 @@ jobs:
849872
TEST_MODE: true
850873

851874
runner-analyze-csharp-autobuild-windows:
875+
name: Runner windows autobuild C# analyze
852876
needs: [check-js, check-node-modules]
853877
runs-on: windows-latest
854878

@@ -885,6 +909,7 @@ jobs:
885909
TEST_MODE: true
886910

887911
runner-analyze-csharp-autobuild-macos:
912+
name: Runner macos autobuild C# analyze
888913
needs: [check-js, check-node-modules]
889914
runs-on: macos-latest
890915

@@ -921,6 +946,7 @@ jobs:
921946
TEST_MODE: true
922947

923948
runner-upload-sarif:
949+
name: Runner upload sarif
924950
needs: [check-js, check-node-modules]
925951
runs-on: ubuntu-latest
926952

@@ -942,6 +968,7 @@ jobs:
942968
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 }}
943969
944970
multi-language-repo_test-local-codeql:
971+
name: Local codeql multi-language repo
945972
needs: [check-js, check-node-modules, check-codeql-versions]
946973
runs-on: ubuntu-latest
947974

@@ -962,6 +989,7 @@ jobs:
962989
- uses: ./../action/analyze
963990

964991
test-javascript-source-root:
992+
name: JS source root
965993
needs: [check-js, check-node-modules]
966994
runs-on: ubuntu-latest
967995

0 commit comments

Comments
 (0)