Skip to content

Commit

Permalink
improve naming
Browse files Browse the repository at this point in the history
  • Loading branch information
santino committed Jan 24, 2022
1 parent d4a0f10 commit 43fe7bf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{matrix.node-version}}-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-yarn-node-${{matrix.node-version}}-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{matrix.node-version}}-
${{ runner.os }}-yarn-node-${{matrix.node-version}}-
${{ runner.os }}-yarn-node-
${{ runner.os }}-yarn-
${{ runner.os }}-
- name: Install Dependencies using Yarn
Expand All @@ -59,7 +60,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node_version }}
flag-name: run-node-${{matrix.node_version}}
parallel: true

coveralls-finished:
Expand Down Expand Up @@ -87,9 +88,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{matrix.node-version}}-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-yarn-node-${{matrix.node-version}}-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{matrix.node-version}}-
${{ runner.os }}-yarn-node-${{matrix.node-version}}-
${{ runner.os }}-yarn-node-
${{ runner.os }}-yarn-
${{ runner.os }}-
- name: Install Dependencies using Yarn
Expand Down

0 comments on commit 43fe7bf

Please sign in to comment.