From 5d582d58ab0a1c3c9fa61fa2a85ee1296e14f30e Mon Sep 17 00:00:00 2001 From: Gene Hoffman Date: Tue, 16 Jun 2020 16:06:31 -0700 Subject: [PATCH] fix yaml indention --- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-ubuntu.yml | 11 ++++++----- .github/workflows/build-windows.yml | 10 +++++----- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 2d345224..706b9733 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -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 diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 92dc0056..b3eba7f9 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -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 diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 934df93c..c87efa93 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -17,7 +17,7 @@ jobs: with: fetch-depth: 0 # we need fetch-depth 0 so setuptools_scm can resolve tags - + - name: Get npm cache directory id: npm-cache run: | @@ -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