Skip to content

Commit e09ddd6

Browse files
chore: bump compass and mongosh dependencies (#395)
* chore: bump compass and mongosh dependencies * build: roll back to vscode 1.58.1 * build: update package lock * build: increase bundle size to 7 mb * test: simplify fluky test to avoid building driver syntax * test: try with sinon.fake.yields * test: fake countAggregationStagesInString * refactor: revert * build: try config set msvs_version 2017 * build: try npm config set msvs_version 2019 * build: try with node 14.17.3 * build: use npm 8 * build back to fixed version 14.17.3 * build: try with 7.19.0 * build: node-version ^14.17.3 * build: node-version 14.15.0 * build: back * build: where node * build: windows-latest * build: typo * build: back to windows-2019 * build: try 14.17.3 * build: node-version 14.17.5 * build: try [email protected] without windows patch * build: npm exact version * build: match version in package json
1 parent 7c1d4a7 commit e09ddd6

File tree

7 files changed

+987
-612
lines changed

7 files changed

+987
-612
lines changed

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

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17+
# https://github.com/actions/virtual-environments#available-environments
1718
os: [ubuntu-latest, windows-2019, macos-latest]
1819

1920
fail-fast: false
@@ -39,22 +40,14 @@ jobs:
3940
- name: Setup Node.js Environment
4041
uses: actions/[email protected]
4142
with:
42-
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
43-
node-version: ^14.17.3
43+
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
44+
node-version: ^14.17.5
4445

45-
- name: Install npm@7
46-
run: npm install -g npm@7
47-
48-
- name: Patch node gyp on Windows
49-
if: ${{ runner.os == 'Windows' }}
50-
shell: powershell
51-
run: |
52-
npm config delete node_gyp
53-
npm uninstall --global node-gyp
54-
npm install --global node-gyp@latest
55-
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
46+
- name: Install [email protected]
47+
run: npm install -g [email protected]
5648

5749
- name: Install Dependencies
50+
shell: bash
5851
run: npm ci
5952

6053
- name: Run Checks

0 commit comments

Comments
 (0)