Skip to content

Commit 2c86f40

Browse files
build: try to install windows-build-tools (#374)
* build: try to install windows-build-tools * build: try just node-gyp * build: try with node 14.17.3 * build: try put back npm ci
1 parent a1759ed commit 2c86f40

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test-and-build.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/[email protected]
4141
with:
4242
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
43-
node-version: ^14.17.3
43+
node-version: 14.17.3
4444

4545
- name: Install npm@7
4646
run: npm install -g npm@7
@@ -49,13 +49,11 @@ jobs:
4949
if: ${{ runner.os == 'Windows' }}
5050
shell: powershell
5151
run: |
52-
npm install --global node-gyp@7.1.2
52+
npm install --global node-gyp
5353
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
5454
5555
- name: Install Dependencies
56-
run: |
57-
npm ci
58-
shell: bash
56+
run: npm ci
5957

6058
- name: Run Checks
6159
run: npm run check

0 commit comments

Comments
 (0)