2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

Update test.yml (#29863)

Fix cache name
This commit is contained in:
XhmikosR
2019-12-24 18:12:13 +02:00
parent e2530bf312
commit 16a82e7e99
+3 -4
View File
@@ -42,11 +42,10 @@ jobs:
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ~/.npm path: ~/.npm
key: ${{ runner.os }}-node-v{{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }} key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }}
restore-keys: | restore-keys: |
${{ runner.OS }}-node-v{{ matrix.node }}-${{ env.cache-name }}- ${{ runner.OS }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }}
${{ runner.OS }}-node-v{{ matrix.node }}- ${{ runner.OS }}-node-v${{ matrix.node }}-
${{ runner.OS }}-
- name: Set up Bundler - name: Set up Bundler
run: gem install bundler -v "~> 1.17" run: gem install bundler -v "~> 1.17"