Skip to content

Commit 32c8593

Browse files
authored
ci: cleanup labelling workflows/steps (#1817)
fix the `name` properties on the workflows and some steps to even further improve visibility. remove codecov from cypress for now until we can instrument coverage from cypress add a few more node versions to the unit test matrix for fun
1 parent 4e830ce commit 32c8593

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/license-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Node.JS CI
1+
name: License Check
22
on:
33
push:
44
paths:
@@ -15,5 +15,5 @@ jobs:
1515
- name: Yarn Install
1616
uses: bahmutov/npm-install@v1
1717

18-
- name: Eslint
18+
- name: License Check
1919
run: yarn license-check

.github/workflows/push-pr.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Node.JS CI
1+
name: CI
22
on: [push]
33

44
jobs:
@@ -22,7 +22,8 @@ jobs:
2222
name: Typescript Build
2323
runs-on: ubuntu-16.04
2424
steps:
25-
- uses: actions/checkout@v2
25+
- name: Checkout Code
26+
uses: actions/checkout@v2
2627

2728
- name: Yarn Install
2829
uses: bahmutov/npm-install@v1
@@ -35,31 +36,30 @@ jobs:
3536
runs-on: ubuntu-16.04
3637
strategy:
3738
matrix:
38-
node: ['12', '14']
39+
node: ['10', '12', '14', '16']
3940
steps:
40-
- uses: actions/checkout@v2
41+
- name: Checkout Code
42+
uses: actions/checkout@v2
4143

4244
- name: Yarn Install
4345
uses: bahmutov/npm-install@v1
4446

4547
- run: yarn test --coverage
4648

47-
- uses: codecov/codecov-action@v1
49+
- name: Codecov
50+
uses: codecov/codecov-action@v1
4851
with:
4952
directory: coverage
5053

5154
e2e:
52-
name: Cypress
55+
name: Cypress E2E Suite
5356
runs-on: ubuntu-16.04
5457
steps:
55-
- uses: actions/checkout@v2
58+
- name: Checkout Code
59+
uses: actions/checkout@v2
5660

5761
- name: Yarn Install
5862
uses: bahmutov/npm-install@v1
5963

6064
- name: Run E2E suite
6165
run: yarn e2e
62-
63-
- uses: codecov/codecov-action@v1
64-
with:
65-
directory: .nyc_output

0 commit comments

Comments
 (0)