feat: remove the "More Information" string when references is empty #159
Workflow file for this run
This file contains hidden or 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: test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| - name: Install Trivy | |
| uses: aquasecurity/setup-trivy@v0.2.2 | |
| - name: Install npm dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: TRIVY_DISABLE_VEX_NOTICE=true xvfb-run -a npm test |