We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736e7aa commit 256c69dCopy full SHA for 256c69d
1 file changed
.github/workflows/nodejs.yml
@@ -10,7 +10,8 @@ jobs:
10
11
strategy:
12
matrix:
13
- node: ['12']
+ node: ['16']
14
+ mongodb: ['5.0']
15
16
steps:
17
- name: Checkout
@@ -25,6 +26,12 @@ jobs:
25
26
- name: Install dependencies
27
run: npm install
28
29
+ - name: Start MongoDB
30
+ uses: supercharge/mongodb-github-action@1.7.0
31
+ with:
32
+ mongodb-version: ${{ matrix.mongodb }}
33
+ mongodb-db: encryptionAPI
34
+
35
- name: Run Unit-Tests + Code Coverage
36
run: npm run test:coverage
37
0 commit comments