Skip to content

Commit bec8a3f

Browse files
committed
ci(build): adds nicer names to build jobs
1 parent 07da8b9 commit bec8a3f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yaml

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

33
on: [push]
44

@@ -16,7 +16,7 @@ jobs:
1616

1717
# todo - lint commit messages
1818

19-
- name: Use Node.js ${{ matrix.node-version }}
19+
- name: Use node@${{ matrix.node-version }}
2020
uses: actions/setup-node@v1
2121
with:
2222
node-version: ${{ matrix.node-version }}
@@ -36,7 +36,8 @@ jobs:
3636
- name: Install dependencies
3737
run: yarn --frozen-lockfile
3838

39-
- run: yarn build --if-present
39+
- name: Build
40+
run: yarn build --if-present
4041
# todo - make tests
4142
# - run: yarn test:unit
4243
# - run: yarn test:compatability

0 commit comments

Comments
 (0)