Skip to content

Commit

Permalink
Merge pull request #151 from aidanm3341/fix-visualizer-scanning
Browse files Browse the repository at this point in the history
Fix visualizer scanning
  • Loading branch information
aidanm3341 authored Apr 18, 2024
2 parents 1bf5c09 + 605754a commit 2b0f1f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/cve-scanning-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ jobs:
continue-on-error: false
strategy:
matrix:
module-folder: [
'cli',
'docs',
'visualizer' ]
module-folder: ['cli', 'docs']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -54,4 +51,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Depcheck report ${{ env.UPNAME }}
path: ${{ github.workspace }}/${{ matrix.module-folder }}-reports
path: ${{ github.workspace }}/${{ matrix.module-folder }}-reports
8 changes: 2 additions & 6 deletions .github/workflows/license-scanning-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ jobs:
strategy:
matrix:
node-version: ['20.x']
module-folder: [
'cli',
'docs',
'visualizer'
]
module-folder: ['cli', 'docs']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -32,4 +28,4 @@ jobs:
- run: npm install -g node-license-validator
working-directory: ${{ matrix.module-folder }}
- run: node-license-validator . --allow-licenses Apache-2.0 MIT BSD-2-Clause BSD BSD-3-Clause Unlicense ISC
working-directory: ${{ matrix.module-folder }}
working-directory: ${{ matrix.module-folder }}

0 comments on commit 2b0f1f0

Please sign in to comment.