cache adjusts

This commit is contained in:
Christian Klemm 2019-11-17 20:57:55 +01:00 committed by GitHub
parent 31ab0e4b7d
commit 8ebe7ee81a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -9,27 +9,29 @@ jobs:
matrix:
node-version: [10.x, 12.x]
env:
CYPRESS_CACHE_FOLDER: node_modules/.cypress
CYPRESS_CACHE_FOLDER: ${{ env.GITHUB_WORKSPACE }}/.cache/Cypress
steps:
- uses: actions/checkout@v1
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm i yarn --global
- name: Cache node modules
- name: Cache Node Modules
uses: actions/cache@v1
with:
path: node_modules
path: .cache
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Packages
run: rm -rf node_modules && yarn install --frozen-lockfile --force
run: |
rm -rf node_modules
yarn config set cache-folder $GITHUB_WORKSPACE/.cache/yarn
yarn install --frozen-lockfile --force
- name: Run Build
run: yarn build