Skip to content

Commit 07f244a

Browse files
committed
chore: update job names
1 parent 2fb905a commit 07f244a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: deploy
1+
name: Release RC
22
on:
33
push:
44
branches:
55
- master
66

77
jobs:
8-
publish-rc:
8+
release-rc:
9+
name: Release RC
910
runs-on: ubuntu-latest
1011
if: "!contains(github.event.head_commit.author.name, 'Github Actions')"
1112
env:

.github/workflows/test.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: ci
1+
name: Test
22
on:
33
pull_request:
44
branches:
55
- master
66

77
jobs:
88
check:
9+
name: Check
910
runs-on: ubuntu-latest
1011
steps:
1112
- uses: actions/checkout@v2
@@ -20,7 +21,7 @@ jobs:
2021
test-node:
2122
needs: check
2223
runs-on: ${{ matrix.os }}
23-
name: test ${{ matrix.project }} node ${{ matrix.node }} ${{ matrix.os }}
24+
name: Test ${{ matrix.project }} node ${{ matrix.node }} ${{ matrix.os }}
2425
strategy:
2526
matrix:
2627
os: [windows-latest, ubuntu-latest, macos-latest]
@@ -41,7 +42,7 @@ jobs:
4142
test-browser:
4243
needs: check
4344
runs-on: ubuntu-latest
44-
name: test ${{ matrix.project }} ${{ matrix.browser }} ${{ matrix.type }}
45+
name: Test ${{ matrix.project }} ${{ matrix.browser }} ${{ matrix.type }}
4546
strategy:
4647
matrix:
4748
project:
@@ -66,7 +67,7 @@ jobs:
6667
test-electron:
6768
needs: check
6869
runs-on: ubuntu-latest
69-
name: test ${{ matrix.project }} ${{ matrix.type }}
70+
name: Test ${{ matrix.project }} ${{ matrix.type }}
7071
strategy:
7172
matrix:
7273
project:

0 commit comments

Comments
 (0)