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 26aa1b1 commit b990407
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .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
Expand All @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit b990407

Please sign in to comment.