Archived
1
0

feat(ci): add audit job for security

This commit is contained in:
Joe Previte
2021-04-05 16:32:01 -07:00
parent fbb5e6e6c6
commit 6f98e08bda
6 changed files with 198 additions and 4 deletions

12
ci/steps/audit.sh Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
yarn --frozen-lockfile
yarn _audit
}
main "$@"