We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5447c22 commit 0fb0c07Copy full SHA for 0fb0c07
.github/workflows/ci.yml
@@ -211,6 +211,11 @@ jobs:
211
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
212
- name: Install dependencies
213
run: npm ci
214
+ - run: |
215
+ if [[ "$MONGODB_VERSION" == "4."* || "$MONGODB_VERSION" == "5."* ]]; then
216
+ wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
217
+ sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
218
+ fi
219
- run: npm run pretest
220
- run: npm run coverage
221
env:
0 commit comments