Fix vulnerabilities in Azure Plugin (AST-35900) #699
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: AST Azure wrapper CI | |
on: [pull_request] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 14 | |
uses: actions/[email protected] | |
env: | |
INPUT_TOKEN: ${{ secrets.NPM_TOKEN }} | |
with: | |
node-version: 14 | |
- name: Authenticate with GitHub package registry | |
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc | |
- name: npm install | |
run: | | |
npm install | |
cd cxAstScan/ | |
npm install | |
- name: Code Linting | |
run: npm run lint | |
- run: npm run build | |
- name: Run tests | |
env: | |
CX_CLIENT_ID: ${{ secrets.CX_CLIENT_ID }} | |
CX_CLIENT_SECRET: ${{ secrets.CX_CLIENT_SECRET }} | |
CX_BASE_URI: ${{ secrets.CX_BASE_URI }} | |
CX_TENANT: ${{ secrets.CX_TENANT }} | |
CX_API_KEY: ${{ secrets.CX_API_KEY }} | |
run: npm run coverage | |