Skip to content

fix(o3r): replaced path.resolve with path.join for better path resolution #8953

fix(o3r): replaced path.resolve with path.join for better path resolution

fix(o3r): replaced path.resolve with path.join for better path resolution #8953

Workflow file for this run

name: NPM Audit
concurrency:
group: ci-${{ github.ref }}-audit
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
workflow_call:
push:
branches:
- main
- 'release/*'
pull_request:
branches:
- main
- 'release/*'
merge_group:
types: [checks_requested]
permissions:
contents: read
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup
uses: ./tools/github-actions/setup
- name: Audit
id: audit
uses: ./tools/github-actions/audit
with:
severity: critical
allWorkspaces: true
recursive: true
environment: all
- name: Summary
if: success() || failure()
run: echo "${{ steps.audit.outputs.reportMarkdown }}" >> $GITHUB_STEP_SUMMARY