Skip to content

Commit

Permalink
compile
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSumislawski committed Apr 3, 2024
1 parent a49d79e commit f67c17a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ jobs:
run: npx [email protected] run version:update # Newer versions have trouble with our lerna.json which contains `useWorkspaces`
- name: Build opentelemetry-instrumentation-aws-lambda
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-aws-lambda
run: npm install --ignore-scripts && npm pack --ignore-scripts
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts
- name: Build opentelemetry-instrumentation-mongodb
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-mongodb
run: npm install --ignore-scripts && npm pack --ignore-scripts
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts
- name: Build opentelemetry-instrumentation-aws-sdk
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-aws-sdk
run: npm install --ignore-scripts && npm pack --ignore-scripts
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts
- name: Prepare opentelemetry-instrumentation
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }}
run: npm install
- name: Build opentelemetry-instrumentation
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }}/experimental/packages/opentelemetry-instrumentation
run: npm install && npm pack
run: npm install && npm run compile && npm pack
- name: Build opentelemetry-sdk-trace-base
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }}/packages/opentelemetry-sdk-trace-base
run: npm install && npm run compile && npm pack
Expand Down

0 comments on commit f67c17a

Please sign in to comment.