We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cacheRoot
1 parent 6430d3f commit 7e87e5eCopy full SHA for 7e87e5e
.circleci/config.yml
@@ -35,7 +35,10 @@ steps-ci: &steps-ci
35
*) yarn install --frozen-lockfile ;;
36
esac
37
- *step-restore-electron-cache
38
- - run: test/ci/_before_script.js
+ - run:
39
+ name: Download Electron binaries
40
+ command: |
41
+ node test/ci/_before_script.js
42
- *step-save-electron-cache
43
- run: yarn run lint
44
- run: yarn run tsd
test/_setup.js
@@ -49,6 +49,7 @@ async function downloadAll (version) {
49
async function downloadElectronChecksum (version) {
50
return downloadArtifact({
51
isGeneric: true,
52
+ cacheRoot: path.join(os.homedir(), '.electron'),
53
version,
54
artifactName: 'SHASUMS256.txt'
55
})
0 commit comments