We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d7c46 commit 817c748Copy full SHA for 817c748
.github/workflows/electron.yml
@@ -47,6 +47,16 @@ jobs:
47
- uses: actions/setup-node@v3
48
with:
49
node-version: 19
50
+ - name: install node tools
51
+ run: npm install --global windows-build-tools
52
+ - name: install node-gyp
53
+ run: npm install --global node-gyp@latest
54
+ - name: Set node config to use python2.7
55
+ run: npm config set python python2.7
56
+ - name: Set node config to set msvs_version to 2015
57
+ run: npm config set msvs_version 2015
58
+ - name: Work around for Windows Server 2019
59
+ run: set path=%path%;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin
60
- name: Get yarn cache directory path
61
id: yarn-cache-dir-path
62
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
0 commit comments