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: matrix:
node-version: [10.x, 12.x] node-version: [10.x, 12.x]
env: env:
CYPRESS_CACHE_FOLDER: node_modules/.cypress CYPRESS_CACHE_FOLDER: ${{ env.GITHUB_WORKSPACE }}/.cache/Cypress
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Setup Node.js ${{ matrix.node-version }} - name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Install Yarn - name: Install Yarn
run: npm i yarn --global run: npm i yarn --global
- name: Cache node modules - name: Cache Node Modules
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: node_modules path: .cache
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Packages - 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 - name: Run Build
run: yarn build run: yarn build