Skip to content

Commit

Permalink
style(ci): tidy job names
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Dec 29, 2020
1 parent a537b2a commit 4b736d7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Compile TypeScript Definition File
run: yarn tsc

unittests:
unit-tests:
name: Unit Tests
if: github.event.pull_request.draft == false
strategy:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
coverage:
name: Aggregate Coverage Calculations
if: github.event.pull_request.draft == false
needs: unittests
needs: unit-tests
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
Expand All @@ -73,7 +73,8 @@ jobs:

automerge:
name: Automatically merge Dependabot pull requests
needs: [lint, unittests]
if: github.event.pull_request.draft == false
needs: [lint, unit-tests]
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@v1.1.1
Expand Down

0 comments on commit 4b736d7

Please sign in to comment.