Skip to content

Commit 62ef9f5

Browse files
authored
Merge pull request #713 from github/aeisenberg/pr-check-names
Add names to all pr-checks
2 parents f9b0b9c + e22a6cd commit 62ef9f5

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

.github/workflows/pr-checks.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "PR checks"
1+
name: PR checks
22

33
env:
44
GO111MODULE: auto
@@ -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

@@ -150,6 +155,7 @@ jobs:
150155
# Packaging test that runs against a javascript database
151156
# Specifying packs as an input.
152157
test-packaging-javascript-inputs:
158+
name: Packaging Inputs JS
153159
needs: [check-js, check-node-modules]
154160
runs-on: ubuntu-latest
155161

@@ -195,6 +201,7 @@ jobs:
195201
# Packaging test that runs against a javascript database
196202
# Specifying packs in the config file and inputs.
197203
test-packaging-javascript-config-and-inputs:
204+
name: Packaging Inputs and Config JS
198205
needs: [check-js, check-node-modules]
199206
runs-on: ubuntu-latest
200207

@@ -239,6 +246,7 @@ jobs:
239246
240247
# Tests a split workflow where database construction and query execution happen in different steps
241248
test-split-workflow:
249+
name: Split workflow
242250
needs: [check-js, check-node-modules]
243251
runs-on: ubuntu-latest
244252

@@ -294,6 +302,7 @@ jobs:
294302
295303
# Identify the CodeQL tool versions to integration test against.
296304
check-codeql-versions:
305+
name: Check CodeQL Versions
297306
needs: [check-js, check-node-modules]
298307
runs-on: ubuntu-latest
299308
outputs:
@@ -391,6 +400,7 @@ jobs:
391400
echo "::set-output name=versions::${VERSIONS_JSON}"
392401
393402
multi-language-repo_test-custom-queries-and-remote-config:
403+
name: Remote Config Custom Queries multi-language repo
394404
needs: [check-js, check-node-modules, check-codeql-versions]
395405
strategy:
396406
fail-fast: false
@@ -422,6 +432,7 @@ jobs:
422432

423433
# Currently is not possible to analyze Go in conjunction with other languages in macos
424434
multi-language-repo_test-go-custom-queries:
435+
name: Go custom queries multi-language repo
425436
needs: [check-js, check-node-modules, check-codeql-versions]
426437
strategy:
427438
fail-fast: false
@@ -456,6 +467,7 @@ jobs:
456467
TEST_MODE: true
457468

458469
go-custom-tracing:
470+
name: Go custom tracing
459471
needs: [check-js, check-node-modules, check-codeql-versions]
460472
strategy:
461473
fail-fast: false
@@ -491,6 +503,7 @@ jobs:
491503
TEST_MODE: true
492504

493505
go-custom-tracing-autobuild:
506+
name: Go autobuild custom tracing
494507
needs: [check-js, check-node-modules, check-codeql-versions]
495508
strategy:
496509
fail-fast: false
@@ -528,6 +541,7 @@ jobs:
528541
529542
# Ruby is in beta, so test it separately for now.
530543
multi-language-repo_test-ruby:
544+
name: Ruby multi-language
531545
needs: [check-js, check-node-modules, check-codeql-versions]
532546
strategy:
533547
fail-fast: false
@@ -568,6 +582,7 @@ jobs:
568582
fi
569583
570584
multi-language-repo_rubocop:
585+
name: Rubocop multi-language
571586
needs: [check-js, check-node-modules]
572587
runs-on: ubuntu-latest
573588

@@ -601,6 +616,7 @@ jobs:
601616
TEST_MODE: true
602617

603618
test-proxy:
619+
name: Proxy
604620
needs: [check-js, check-node-modules, check-codeql-versions]
605621
strategy:
606622
fail-fast: false
@@ -635,6 +651,7 @@ jobs:
635651
TEST_MODE: true
636652

637653
runner-analyze-javascript-ubuntu:
654+
name: Runner ubuntu JS analyze
638655
needs: [check-js, check-node-modules]
639656
runs-on: ubuntu-latest
640657

@@ -662,6 +679,7 @@ jobs:
662679
TEST_MODE: true
663680

664681
runner-analyze-javascript-windows:
682+
name: Runner windows JS analyze
665683
needs: [check-js, check-node-modules]
666684
runs-on: windows-latest
667685

@@ -685,6 +703,7 @@ jobs:
685703
TEST_MODE: true
686704

687705
runner-analyze-javascript-macos:
706+
name: Runner macos JS analyze
688707
needs: [check-js, check-node-modules]
689708
runs-on: macos-latest
690709

@@ -708,6 +727,7 @@ jobs:
708727
TEST_MODE: true
709728

710729
runner-analyze-csharp-ubuntu:
730+
name: Runner ubuntu C# analyze
711731
needs: [check-js, check-node-modules]
712732
runs-on: ubuntu-latest
713733

@@ -744,6 +764,7 @@ jobs:
744764
TEST_MODE: true
745765

746766
runner-analyze-csharp-windows:
767+
name: Runner windows C# analyze
747768
needs: [check-js, check-node-modules]
748769
runs-on: windows-latest
749770

@@ -783,6 +804,7 @@ jobs:
783804
TEST_MODE: true
784805

785806
runner-analyze-csharp-macos:
807+
name: Runner macos C# analyze
786808
needs: [check-js, check-node-modules]
787809
runs-on: macos-latest
788810

@@ -821,6 +843,7 @@ jobs:
821843

822844

823845
runner-analyze-csharp-autobuild-ubuntu:
846+
name: Runner ubuntu autobuild C# analyze
824847
needs: [check-js, check-node-modules]
825848
runs-on: ubuntu-latest
826849

@@ -856,6 +879,7 @@ jobs:
856879
TEST_MODE: true
857880

858881
runner-analyze-csharp-autobuild-windows:
882+
name: Runner windows autobuild C# analyze
859883
needs: [check-js, check-node-modules]
860884
runs-on: windows-latest
861885

@@ -892,6 +916,7 @@ jobs:
892916
TEST_MODE: true
893917

894918
runner-analyze-csharp-autobuild-macos:
919+
name: Runner macos autobuild C# analyze
895920
needs: [check-js, check-node-modules]
896921
runs-on: macos-latest
897922

@@ -928,6 +953,7 @@ jobs:
928953
TEST_MODE: true
929954

930955
runner-upload-sarif:
956+
name: Runner upload sarif
931957
needs: [check-js, check-node-modules]
932958
runs-on: ubuntu-latest
933959

@@ -949,6 +975,7 @@ jobs:
949975
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 }}
950976
951977
multi-language-repo_test-local-codeql:
978+
name: Local codeql multi-language repo
952979
needs: [check-js, check-node-modules, check-codeql-versions]
953980
runs-on: ubuntu-latest
954981

@@ -969,6 +996,7 @@ jobs:
969996
- uses: ./../action/analyze
970997

971998
test-javascript-source-root:
999+
name: JS source root
9721000
needs: [check-js, check-node-modules]
9731001
runs-on: ubuntu-latest
9741002

0 commit comments

Comments
 (0)