File tree 3 files changed +14
-8
lines changed
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
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"
Original file line number Diff line number Diff line change 1
1
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"
Original file line number Diff line number Diff line change 8
8
CYPRESS_TEST_USERNAME : ${{ secrets.CYPRESS_TEST_USERNAME }}
9
9
CYPRESS_TEST_PASSWORD : ${{ secrets.CYPRESS_TEST_PASSWORD }}
10
10
CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
11
+ CYPRESS_CACHE_FOLDER : ${{ secrets.CYPRESS_CACHE_FOLDER }}
11
12
jobs :
12
13
test :
13
14
runs-on : macos-latest
@@ -23,20 +24,23 @@ jobs:
23
24
- uses : actions/setup-node@v1
24
25
with :
25
26
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
28
29
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
30
34
uses : actions/cache@v1
31
35
with :
32
- path : ${{ steps.yarn-cache.outputs.dir }}
36
+ path : ${{ steps.yarn-cache-directory .outputs.dir }}
33
37
key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
34
38
restore-keys : |
35
39
${{ runner.os }}-yarn-
36
- - name : Cache Cypress
40
+ - name : Load Cached Cypress
37
41
uses : actions/cache@v1
38
42
with :
39
- path : ~/. cache/Cypress
43
+ path : ${{ steps.cypress- cache-directory.outputs.dir }}
40
44
key : ${{ runner.os }}-cypress-${{ hashFiles('**/yarn.lock') }}
41
45
restore-keys : |
42
46
${{ runner.os }}-cypress-
You can’t perform that action at this time.
0 commit comments