Cache adjusts

This commit is contained in:
Christian Klemm
2019-11-12 21:24:35 +01:00
committed by GitHub
parent a59468d6c1
commit 3ad3fc2622

View File

@@ -16,9 +16,6 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm i yarn --global
- name: Install Packages
run: yarn install
- name: Cache node modules
uses: actions/cache@v1
@@ -26,10 +23,12 @@ jobs:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Packages
run: yarn install
- name: Run Build
run: yarn build