Skip to content

Commit

Permalink
chore: add job names
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Aug 25, 2020
1 parent 685cbeb commit e965f32
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -4,6 +4,7 @@ on: [push, pull_request]

jobs:
validate-yarn-cache:
name: Warm up Cache
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -29,6 +30,7 @@ jobs:
yarn install --immutable
test-coverage:
name: Test on Node.js Latest
needs: validate-yarn-cache
runs-on: ubuntu-latest
steps:
Expand All @@ -52,6 +54,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

build:
name: Build Babel Artifacts
needs: validate-yarn-cache
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -83,6 +86,7 @@ jobs:
!**/node_modules/**
test:
name: Test on Node.js # GitHub will add ${{ matrix.node-version }} to this title
needs: build
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit e965f32

Please sign in to comment.