Skip to content

Commit

Permalink
chore(ga): cache cypress binary (#7377)
Browse files Browse the repository at this point in the history
* chore(ga): cache cypress binary

* chore(ga): add cypress_cache_folder

* chore(ga): add cache node modules to artifact-bundle
  • Loading branch information
tim-lai authored Jun 24, 2021
1 parent fd31ed0 commit 96d5218
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
pull_request:
branches: [ master ]

env:
CYPRESS_CACHE_FOLDER: cypress/cache

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -29,8 +32,16 @@ jobs:
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
- name: Cache Cypress binary
id: cache-cypress-binary
uses: actions/cache@v2
with:
path: cypress/cache
key: cypress-binary-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
if: |
steps.cache-node-modules.outputs.cache-hit != 'true' ||
steps.cache-cypress-binary.outputs.cache-hit != 'true'
run: npm ci
- name: Lint code for errors only
run: npm run lint-errors
Expand All @@ -52,7 +63,14 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node Modules # artifact-bundle test is node-only, no Cypress
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
- name: Build and Run all artifact tests
run: npm run test:artifact
Expand Down

0 comments on commit 96d5218

Please sign in to comment.