Update dependency @salt-ds/lab to v1.0.0-alpha.88 #1995
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: Legal report with Node | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "main" | |
| - "release-*" | |
| pull_request: | |
| paths: | |
| - "**/package.json" | |
| - ".github/workflows/legal-report-node.yml" | |
| jobs: | |
| scan-packages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20.x | |
| - name: Build project with NPM | |
| run: npm install --omit=dev | |
| working-directory: vuu-ui | |
| - run: npx node-license-validator . --allow-licenses MIT ISC 0BSD BSD BSD-3-Clause Apache-2.0 | |
| working-directory: vuu-ui |