Skip to content

Commit 0d2ecd7

Browse files
Merge pull request circleci#1402 from circleci/gordon/sample-config-sequential-workflow
CIRCLE-5713 - Command names can be free text
2 parents aeaf43c + 879a45c commit 0d2ecd7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jekyll/_cci2/sample-config.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
steps:
4747
- checkout
4848
- run:
49-
name: update-npm
49+
name: Update npm
5050
command: 'sudo npm install -g npm@latest'
5151
- restore_cache:
5252
key: dependency-cache-{{ checksum "package.json" }}
5353
- run:
54-
name: install-npm-wee
54+
name: Install npm wee
5555
command: npm install
5656
- save_cache:
5757
key: dependency-cache-{{ checksum "package.json" }}
@@ -64,10 +64,10 @@ jobs:
6464
steps:
6565
- checkout
6666
- run:
67-
name: test
67+
name: Test
6868
command: npm test
6969
- run:
70-
name: code-coverage
70+
name: Generate code coverage
7171
command: './node_modules/.bin/nyc report --reporter=text-lcov'
7272
- store_artifacts:
7373
path: test-results.xml

0 commit comments

Comments
 (0)