Skip to content

Commit

Permalink
chore: Add Npm Audit workflow (twilio#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuj Badhwar committed Feb 8, 2022
1 parent 8805a00 commit 5dd1887
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/cli-core-audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: NPM Audit Check
on:
push:
branches: [ main ]
pull_request:

jobs:
audit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.x, 14.x]
steps:
- name: Checkout cli repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- run: make install
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Run audit check
run: npm audit --audit-level=moderate --production
# minimum vulnerability level that will cause the command to fail
# audit reports with low severity would pass the test
notify-complete-fail:
if: ${{ failure() && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}
needs: [ audit ]
name: Notify Npm Audit Failed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.ALERT_SLACK_WEB_HOOK }}
SLACK_COLOR: 'danger'
SLACK_USERNAME: CLI Github Actions
SLACK_MSG_AUTHOR: twilio-dx
SLACK_ICON_EMOJI: ':github:'
SLACK_TITLE: "Twilio Cli"
SLACK_MESSAGE: 'Cli audit test failed'
MSG_MINIMAL: actions url
SLACK_FOOTER: Posted automatically using GitHub Actions
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
token-validation:
runs-on: ubuntu-latest
steps:
- name: Validate REPO_ACCESS_TOKEN
- name: Validate REPO_ACCESS_TOKEN
uses: actions/checkout@v2
with:
repository: 'twilio/twilio-oai'
Expand Down Expand Up @@ -66,8 +66,7 @@ jobs:
run: make test
update-api-specs:
runs-on: ubuntu-latest
needs: [ token-validation ]
# needs: [test]
needs: [ test ]
outputs:
change-log: ${{ steps.update-specs.outputs.change-log }}
version-type: ${{ steps.update-specs.outputs.version-type }}
Expand Down Expand Up @@ -157,4 +156,4 @@ jobs:
SLACK_ICON_EMOJI: ":ship:"
SLACK_TITLE: "Twilio Cli-core"
SLACK_MESSAGE: 'Release workflow Failed'
MSG_MINIMAL: actions url
MSG_MINIMAL: actions url

0 comments on commit 5dd1887

Please sign in to comment.