Skip to content

NodeJS: update mongodb instrumentation version to 0.59.0 #1057

NodeJS: update mongodb instrumentation version to 0.59.0

NodeJS: update mongodb instrumentation version to 0.59.0 #1057

Workflow file for this run

name: "Continuous Build (NodeJS)"
on:
push:
paths:
- 'nodejs/**'
- '.github/workflows/ci-nodejs.yml'
branches:
- main
pull_request:
paths:
- 'nodejs/**'
- '.github/workflows/ci-nodejs.yml'
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: 18
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
working-directory: nodejs
- run: npm run lint
working-directory: nodejs
- run: npm test
working-directory: nodejs
- name: Build AWS SDK Sample
run: npm run build
working-directory: nodejs/sample-apps/aws-sdk