fix yaml indention

This commit is contained in:
Gene Hoffman 2020-06-16 16:06:31 -07:00 committed by Gene Hoffman
parent d04aedd802
commit 5d582d58ab
3 changed files with 12 additions and 11 deletions

View File

@ -27,7 +27,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Cache node modules
- name: Cache npm
uses: actions/cache@v2
env:
cache-name: cache-node-modules

View File

@ -27,12 +27,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
- name: Cache npm
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Get pip cache dir
id: pip-cache

View File

@ -25,10 +25,10 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Get pip cache dir
id: pip-cache