From b9904078208917d338292ccad5ec544e7e53ae44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Mon, 24 Aug 2020 15:22:47 -0400 Subject: [PATCH] chore: add job names --- .github/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6f517e70b3a..ceb48cb8ca91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,10 @@ -name: Node CI +name: CI on: [push, pull_request] jobs: - validate-yarn-cache: + prepare-yarn-cache: + name: Prepare Cache runs-on: ubuntu-latest steps: - name: Checkout code @@ -28,8 +29,9 @@ jobs: run: | yarn install --immutable - test: - needs: validate-yarn-cache + test-coverage: + name: Test on Node.js Latest + needs: prepare-yarn-cache runs-on: ubuntu-latest steps: - name: Checkout code @@ -52,7 +54,8 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} legacy-node-version-test: - needs: validate-yarn-cache + name: Test on Node.js + needs: prepare-yarn-cache runs-on: ubuntu-latest strategy: matrix: