Skip to content

Commit dad6565

Browse files
authored
Add Action Step Names
* Create descriptive names for action steps
1 parent aa6f894 commit dad6565

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/_internal-coding-standard.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ jobs:
3434
coding-standard:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v3
38-
- uses: './coding-standard'
37+
- name: Sync repos and check out
38+
uses: actions/checkout@v3
39+
- name: Run coding standard tests
40+
uses: './coding-standard'
3941
with:
4042
version: ${{ github.event.inputs.version || '*' }}
41-
path: ${{ github.event.inputs.path || '_test/demo-package' }}
43+
path: ${{ github.event.inputs.path || '_test/demo-package' }}

0 commit comments

Comments
 (0)