Skip to content

Commit

Permalink
Disable security checks workflow job (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryuni authored Mar 15, 2022
1 parent 97108d3 commit 296f048
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/branch-validations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ 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 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 audit

validate:
runs-on: ubuntu-18.04
Expand Down

0 comments on commit 296f048

Please sign in to comment.