ci: Comment out cache steps

This commit is contained in:
peaceiris 2020-01-18 10:25:10 +09:00
parent cfc3d6657b
commit 8485d4c36e

View file

@ -41,18 +41,18 @@ jobs:
with: with:
node-version: '${{ steps.nvm.outputs.NVMRC }}' node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Get npm cache directory # - name: Get npm cache directory
id: npm-cache # id: npm-cache
run: | # run: |
echo "::set-output name=dir::$(npm config get cache)" # echo "::set-output name=dir::$(npm config get cache)"
#
- name: Cache npm # - name: Cache npm
uses: actions/cache@v1 # uses: actions/cache@v1
with: # with:
path: ${{ steps.npm-cache.outputs.dir }} # path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} # key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-node- # ${{ runner.os }}-node-
- run: npm ci - run: npm ci