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.
1 parent e898b71 commit b40e136Copy full SHA for b40e136
1 file changed
.github/workflows/test.yml
@@ -39,6 +39,16 @@ jobs:
39
uses: actions/setup-node@v4
40
with:
41
node-version: ${{ matrix.node }}
42
+
43
+ - name: Install mongosh
44
+ run: |
45
+ sudo apt-get update
46
+ sudo apt-get install -y wget gnupg
47
+ wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
48
+ echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
49
50
+ sudo apt-get install -y mongodb-mongosh
51
52
- run: which mongosh
53
- run: npm install
54
- name: Run tests
0 commit comments