HELP-8072 & HELP-8071 action menu tooltip fixes #1051
Workflow file for this run
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: Pull Request Checks | |
on: | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.12.2 | |
- name: npm install, build, and test | |
run: | | |
npm ci | |
npm run lint | |
npm run test | |
env: | |
HUSKY_SKIP_INSTALL: 1 | |
CI: true | |
- name: run security audit of npm packages | |
run: | | |
npm run audit-ci | |
- name: run security check on code | |
id: code_security_scan | |
run: | | |
pip install --upgrade njsscan | |
njsscan . | |
- name: scan for exposed aws secrets | |
run: | | |
git clone https://github.com/awslabs/git-secrets.git | |
cd ./git-secrets | |
sudo make install | |
cd ../ | |
rm -rf git-secrets | |
git secrets --register-aws | |
git-secrets --scan -r | |
env: | |
CI: true |