-
Notifications
You must be signed in to change notification settings - Fork 3
77 lines (69 loc) · 2.18 KB
/
scanners.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Scanners
on:
push:
schedule:
- cron: "0 0 * * *"
jobs:
trufflehog:
runs-on: ubuntu-latest
name: Trufflehog
steps:
- uses: actions/checkout@v2
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: trufflehog-actions-scan
uses: DopplerUniversity/trufflehog-actions-scan@master
with:
scanArguments: "--regex --max_depth=50 --branch=${{ steps.extract_branch.outputs.branch }} --entropy=False --allow=/github/workspace/.trufflehog/allow --exclude_paths=/github/workspace/.trufflehog/exclude_patterns"
npm_linter:
runs-on: ubuntu-latest
name: NPM Linter
steps:
- uses: actions/checkout@v2
- name: NPM Build
run: npm install --frozen-lockfile
- run: set -eo pipefail; npm run lint 2>&1| tee ./linter-report.txt
- uses: actions/upload-artifact@master
if: always()
with:
name: NPM Linter Report
path: ./linter-report.txt
npm_prettier:
runs-on: ubuntu-latest
name: NPM Prettier
steps:
- uses: actions/checkout@v2
- name: NPM Build
run: npm install --frozen-lockfile
- run: set -eo pipefail; npm run prettier 2>&1| tee ./prettier-report.txt
- uses: actions/upload-artifact@master
if: always()
with:
name: NPM Prettier Report
path: ./prettier-report.txt
npm_typecheck:
runs-on: ubuntu-latest
name: NPM Typecheck
steps:
- uses: actions/checkout@v2
- name: NPM Build
run: npm install --frozen-lockfile
- run: set -eo pipefail; npm run typecheck 2>&1| tee ./typecheck-report.txt
- uses: actions/upload-artifact@master
if: always()
with:
name: NPM Typecheck Report
path: ./typecheck-report.txt
npm_audit:
runs-on: ubuntu-latest
name: NPM Audit
steps:
- uses: actions/checkout@v2
- run: set -eo pipefail; npm audit 2>&1| tee ./audit-report.txt
- uses: actions/upload-artifact@master
if: always()
with:
name: NPM Audit Report
path: ./audit-report.txt