File tree Expand file tree Collapse file tree 3 files changed +41
-2
lines changed Expand file tree Collapse file tree 3 files changed +41
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Code style
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+
10+ steps :
11+ - uses : actions/checkout@v1
12+ - name : php-cs-fixer
13+ run : make php-cs-fixer
14+ - name : twigcs
15+ run : make twigcs
16+ - name : eslint
17+ run : make eslint
18+ # - name: phpstan
19+ # run: make phpstan
Original file line number Diff line number Diff line change 1+ name : Security
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+
10+ steps :
11+ - uses : actions/checkout@v1
12+ - name : security
13+ run : make security
Original file line number Diff line number Diff line change @@ -134,10 +134,17 @@ lt: vendor
134134ly : vendor
135135 $(SYMFONY ) lint:yaml config
136136
137- security : # # Check security of your dependencies (https://security.sensiolabs.org/)
138- security : vendor
137+ security : # # Check security of your dependencies
138+ security : audit-vendor audit-node_modules
139+
140+ audit-vendor : # # (github.com/sensiolabs/security-checker)
141+ audit-vendor : vendor
139142 $(EXEC_PHP ) ./vendor/bin/security-checker security:check
140143
144+ audit-node_modules : # # npm audit (https://docs.npmjs.com/cli/audit)
145+ audit-node_modules : node_modules
146+ $(YARN ) audit
147+
141148phploc : # # PHPLoc (https://github.com/sebastianbergmann/phploc)
142149 $(QA ) phploc src/
143150
You can’t perform that action at this time.
0 commit comments