Skip to content

deps: bump @opentelemetry/auto-instrumentations-node from 0.56.1 to 0.64.6 #130

deps: bump @opentelemetry/auto-instrumentations-node from 0.56.1 to 0.64.6

deps: bump @opentelemetry/auto-instrumentations-node from 0.56.1 to 0.64.6 #130

Workflow file for this run

name: pull request
on: [pull_request]
permissions:
pull-requests: write
contents: read
jobs:
eslint:
name: Run TS Project eslint
runs-on: ubuntu-latest
strategy:
matrix:
node: [20.x, 22.x]
steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v4
- name: Init nodejs
uses: ./.github/actions/init-npm
with:
node-version: ${{ matrix.node }}
- name: Run TS Project linters
run: npm run lint
upload_package:
needs: [eslint]
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v4
- name: Init nodejs
uses: ./.github/actions/init-npm
- name: Pack the package
run: npm pack
- name: get properties
id: json_properties
uses: ActionsTools/read-json-action@main
with:
file_path: 'package.json'
- uses: azure/CLI@v2
env:
AZURE_STORAGE_SAS_TOKEN: ${{ secrets.SAS_TOKEN }}
with:
inlineScript: |
az storage blob upload --name telemetry-$GITHUB_SHA.tgz --account-name ghatmpstorage --container-name=npm-packages --file map-colonies-telemetry-${{steps.json_properties.outputs.version}}.tgz
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Hi it is me, your friendly bot helper! :wave:
I've packed this commit for you :blush:
You can install it like this:
```json
{
"dependencies": {
"@map-colonies/telemetry": "https://ghatmpstorage.blob.core.windows.net/npm-packages/telemetry-${{ github.sha }}.tgz"
}
}
```
The link will expire in a week :hourglass: