Skip to content

build(deps): bump the opentelemetry-deps-nodejs group across 2 directories with 7 updates #1005

build(deps): bump the opentelemetry-deps-nodejs group across 2 directories with 7 updates

build(deps): bump the opentelemetry-deps-nodejs group across 2 directories with 7 updates #1005

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 18
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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