Changeset 51355 for trunk/.github/workflows/coding-standards.yml
- Timestamp:
- 07/06/2021 06:36:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r51341 r51355 56 56 # - Runs PHPCS on the full codebase with warnings suppressed. 57 57 # - Runs PHPCS on the `tests` directory without warnings suppressed. 58 # - Ensures version-controlled files are not modified or deleted. 58 59 # - todo: Configure Slack notifications for failing scans. 59 60 phpcs: … … 95 96 run: phpcs tests -q --report=checkstyle | cs2pr 96 97 98 - name: Ensure version-controlled files are not modified during the tests 99 run: git diff --exit-code 100 97 101 # Runs the JavaScript coding standards checks. 98 102 # … … 106 110 # _ Installs NPM dependencies using install-changed to hash the `package.json` file. 107 111 # - Run the WordPress JSHint checks. 112 # - Ensures version-controlled files are not modified or deleted. 108 113 # - todo: Configure Slack notifications for failing tests. 109 114 jshint: … … 141 146 - name: Run JSHint 142 147 run: npm run grunt jshint 148 149 - name: Ensure version-controlled files are not modified or deleted 150 run: git diff --exit-code
Note: See TracChangeset
for help on using the changeset viewer.