From 4b736d7d886ad3d389a177c1c4ddb20e4cf2fb5a Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Tue, 29 Dec 2020 08:30:51 +0000 Subject: [PATCH] style(ci): tidy job names --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 541b3484..46b5fb2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 @@ -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