Skip to content

Commit b6794c2

Browse files
committed
Github Workflows: better naming
1 parent 0c64213 commit b6794c2

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL Scanning"
12+
name: CodeQL
1313

1414
on:
1515
push:
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
CodeQL-Build:
25-
name: CodeQL Build
25+
name: Scan
2626
runs-on: ubuntu-latest
2727

2828
strategy:

.github/workflows/khronos-binaries.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
release-binaries:
10+
name: Release
1011
runs-on: ubuntu-latest
1112
steps:
1213
- name: Get the version

.github/workflows/node-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Node.js CI
1+
name: CI
22

33
on:
44
push:
@@ -8,6 +8,7 @@ on:
88

99
jobs:
1010
test:
11+
name: Test
1112
runs-on: ${{ matrix.os }}
1213
strategy:
1314
matrix:

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
check-version:
10+
name: Check
1011
runs-on: ubuntu-latest
1112
steps:
1213
- name: Read version from tag
@@ -29,6 +30,7 @@ jobs:
2930
if: steps.get_version.outputs.VERSION != steps.extract_version.outputs.version
3031
run: exit 1
3132
test:
33+
name: Test
3234
runs-on: ${{ matrix.os }}
3335
needs: [check-version]
3436
strategy:
@@ -49,6 +51,7 @@ jobs:
4951
- name: Tests
5052
run: npm test
5153
publish:
54+
name: Publish
5255
runs-on: ubuntu-latest
5356
needs: [check-version, test]
5457
steps:

0 commit comments

Comments
 (0)