From 92f1881dfe7dd5a1bd84b44cf92a8542dc559da3 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 22 Aug 2023 07:21:27 -0700 Subject: [PATCH] Polish job names This matches the npm script names closer --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f51a2736..531103c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: - name: Lint API run: yarn lint-api - unit-tests-fast: + unit-test-parallel: timeout-minutes: 20 strategy: matrix: @@ -110,7 +110,7 @@ jobs: - name: Unit tests run: yarn test-unit --forbid-only - unit-tests: + unit-test: needs: build timeout-minutes: 20 strategy: @@ -143,7 +143,7 @@ jobs: - name: Unit tests run: yarn test-unit --forbid-only - integration-tests-fast: + test-api-parallel: timeout-minutes: 20 strategy: matrix: @@ -183,7 +183,7 @@ jobs: - name: Integration tests (${{ matrix.browser }}) run: yarn test-api-${{ matrix.browser }} --headless --forbid-only - integration-tests: + test-api: needs: build timeout-minutes: 20 strategy: