- Timestamp:
- 03/02/2021 07:57:15 PM (4 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r50473 r50479 19 19 - '3.[89]' 20 20 - '[4-9].[0-9]' 21 paths: 22 # Any change to a PHP or JavaScript file should run checks. 23 - '**.js' 24 - '**.php' 25 # These files configure NPM. Changes could affect the outcome. 26 - 'package*.json' 27 # These files configure Composer. Changes could affect the outcome. 28 - 'composer.*' 29 # This file configures JSHint. Changes could affect the outcome. 30 - '.jshintrc' 31 # This file configures PHPCS. Changes could affect the outcome. 32 - 'phpcs.xml.dist' 33 # Changes to workflow files should always verify all workflows are successful. 34 - '.github/workflows/*.yml' 21 35 22 36 jobs: -
trunk/.github/workflows/javascript-tests.yml
r50476 r50479 18 18 - '3.[89]' 19 19 - '[4-9].[0-9]' 20 paths: 21 # Any change to a JavaScript file should run tests. 22 - '**.js' 23 # These files configure NPM. Changes could affect the outcome. 24 - 'package*.json' 25 # This file configures ESLint. Changes could affect the outcome. 26 - '.eslintignore' 27 # This file configures JSHint. Changes could affect the outcome. 28 - '.jshintrc' 29 # Any change to the QUnit directory should run tests. 30 - 'tests/qunit/**' 31 # Changes to workflow files should always verify all workflows are successful. 32 - '.github/workflows/*.yml' 20 33 21 34 jobs: -
trunk/.github/workflows/php-compatibility.yml
r50473 r50479 18 18 - '5.[5-9]' 19 19 - '[6-9].[0-9]' 20 paths: 21 # This workflow only scans PHP files. 22 - '**.php' 23 # These files configure Composer. Changes could affect the outcome. 24 - 'composer.*' 25 # This file configures PHP Compatibility scanning. Changes could affect the outcome. 26 - 'phpcompat.xml.dist' 27 # Changes to workflow files should always verify all workflows are successful. 28 - '.github/workflows/*.yml' 20 29 21 30 jobs: -
trunk/.github/workflows/verify-npm-on-windows.yml
r50476 r50479 14 14 - '3.[7-9]' 15 15 - '[4-9].[0-9]' 16 paths: 17 # These files configure NPM. Changes could affect the outcome. 18 - 'package*.json' 19 # JavaScript files are built using NPM. 20 - '**.js' 21 # CSS and SCSS files are built using NPM. 22 - '**.scss' 23 - '**.css' 24 # Changes to workflow files should always verify all workflows are successful. 25 - '.github/workflows/**.yml' 16 26 17 27 env:
Note: See TracChangeset
for help on using the changeset viewer.