diff --git a/.github/workflows/branch-validations.yaml b/.github/workflows/branch-validations.yaml index 662b3e4f..76331aed 100644 --- a/.github/workflows/branch-validations.yaml +++ b/.github/workflows/branch-validations.yaml @@ -12,29 +12,29 @@ on: - opened jobs: - security-checks: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: 12 - - - name: Cache dependencies - id: cache-dependencies - uses: actions/cache@v1 - with: - path: node_modules - key: node_modules-${{ hashFiles('**/package-lock.json') }} - - - name: Install dependencies - if: steps.cache-dependencies.outputs.cache-hit != 'true' - run: npm ci - - - name: Check dependency vulnerabilities - run: |- - npm i -g npm-audit-resolver - npx check-audit + # security-checks: + # runs-on: ubuntu-18.04 + # steps: + # - uses: actions/checkout@v1 + # - uses: actions/setup-node@v1 + # with: + # node-version: 12 + + # - name: Cache dependencies + # id: cache-dependencies + # uses: actions/cache@v1 + # with: + # path: node_modules + # key: node_modules-${{ hashFiles('**/package-lock.json') }} + + # - name: Install dependencies + # if: steps.cache-dependencies.outputs.cache-hit != 'true' + # run: npm ci + + # - name: Check dependency vulnerabilities + # run: |- + # npm i -g npm-audit-resolver + # npx check-audit validate: runs-on: ubuntu-18.04