Skip to content

Commit 2868390

Browse files
author
RoyalSix
committed
added path fix for cypress cache
1 parent 5937ea1 commit 2868390

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.env

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
GENERATE_SOURCEMAP=false
2-
REACT_APP_DOOR43_SERVER_URL="https://qa.door43.org"
2+
REACT_APP_DOOR43_SERVER_URL="https://qa.door43.org"
3+
CYPRESS_CACHE_FOLDER="./node_modules/CypressBinary"

.env.development

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
GENERATE_SOURCEMAP=false
2-
REACT_APP_DOOR43_SERVER_URL="https://bg.door43.org"
2+
REACT_APP_DOOR43_SERVER_URL="https://bg.door43.org"
3+
CYPRESS_CACHE_FOLDER="./node_modules/CypressBinary"

.github/workflows/nodejs.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ env:
88
CYPRESS_TEST_USERNAME: ${{ secrets.CYPRESS_TEST_USERNAME }}
99
CYPRESS_TEST_PASSWORD: ${{ secrets.CYPRESS_TEST_PASSWORD }}
1010
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
11+
CYPRESS_CACHE_FOLDER: ${{ secrets.CYPRESS_CACHE_FOLDER }}
1112
jobs:
1213
test:
1314
runs-on: macos-latest
@@ -23,20 +24,23 @@ jobs:
2324
- uses: actions/setup-node@v1
2425
with:
2526
node-version: ${{ matrix.node-version }}
26-
- name: Get yarn cache
27-
id: yarn-cache
27+
- name: Get yarn cache directory
28+
id: yarn-cache-directory
2829
run: echo "::set-output name=dir::$(yarn cache dir)"
29-
- name: Cache Yarn Modules
30+
- name: Get cypress cache directory
31+
id: cypress-cache-directory
32+
run: echo "::set-output name=dir::$(yarn cypress cache path | sed -n 3p)"
33+
- name: Load Cached Yarn Modules
3034
uses: actions/cache@v1
3135
with:
32-
path: ${{ steps.yarn-cache.outputs.dir }}
36+
path: ${{ steps.yarn-cache-directory.outputs.dir }}
3337
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
3438
restore-keys: |
3539
${{ runner.os }}-yarn-
36-
- name: Cache Cypress
40+
- name: Load Cached Cypress
3741
uses: actions/cache@v1
3842
with:
39-
path: ~/.cache/Cypress
43+
path: ${{ steps.cypress-cache-directory.outputs.dir }}
4044
key: ${{ runner.os }}-cypress-${{ hashFiles('**/yarn.lock') }}
4145
restore-keys: |
4246
${{ runner.os }}-cypress-

0 commit comments

Comments
 (0)