CICD Integration tests: new shares for pre-existing datasets (#1611) #2836
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: npm-audit | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- release/* | |
- main-v2 | |
- v2m* | |
permissions: | |
contents: read | |
jobs: | |
npm-audit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: | | |
./frontend/package-lock.json | |
./frontend/package.json | |
- run: npm ci | |
working-directory: frontend | |
- run: npm run audit | |
working-directory: frontend |