fix(otel): fix async resource attribute access issue #2178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js Package | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
merge_group: | |
jobs: | |
## | |
# Runs semantic release in a regular | |
## | |
release: | |
name: Semantic Release | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
# https://github.com/semantic-release/npm | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
id-token: write # to enable use of OIDC for npm provenance | |
steps: | |
- name: Check out code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: 20.14 | |
registry-url: 'https://registry.npmjs.org' | |
- name: PNPM Setup | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.1.4 | |
- name: Install dependencies | |
run: pnpm i | |
# Need to update sendgrid to enable this | |
# - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
# run: pnpm audit signatures | |
- name: Semantic Release | |
run: pnpm run semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
# Need to update sendgrid to enable this | |
# NPM_CONFIG_PROVENANCE: true |