Skip to content

Merge pull request #59 from mongodb/antoniomorello-DB-patch-1 #206

Merge pull request #59 from mongodb/antoniomorello-DB-patch-1

Merge pull request #59 from mongodb/antoniomorello-DB-patch-1 #206

Workflow file for this run

name: Test Examples
on:
workflow_call:
push:
jobs:
run-node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
working-directory: tests/integration
run: npm install
- name: Test the Examples
working-directory: tests/integration
run: npm run test:ts