Changeset 61830
- Timestamp:
- 03/04/2026 08:40:32 PM (9 days ago)
- Location:
- trunk
- Files:
-
- 2 added
- 2 edited
-
.github/workflows/javascript-type-checking.yml (added)
-
.github/workflows/phpstan-static-analysis.yml (modified) (1 diff)
-
.github/workflows/reusable-javascript-type-checking.yml (added)
-
Gruntfile.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpstan-static-analysis.yml
r61699 r61830 82 82 steps: 83 83 - name: Dispatch workflow run 84 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.184 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 85 85 with: 86 86 retries: 2 -
trunk/Gruntfile.js
r61800 r61830 1557 1557 'webpack:prod', 1558 1558 'jshint:corejs', 1559 'typecheck:js', 1559 1560 'uglify:imgareaselect', 1560 1561 'uglify:jqueryform', … … 2010 2011 grunt.registerTask( 'test', 'Runs all QUnit and PHPUnit tasks.', ['qunit:compiled', 'phpunit'] ); 2011 2012 2013 grunt.registerTask( 'typecheck:js', 'Runs TypeScript type checking.', function() { 2014 var done = this.async(); 2015 2016 grunt.util.spawn( { 2017 cmd: 'npm', 2018 args: [ 'run', 'typecheck:js' ], 2019 opts: { stdio: 'inherit' } 2020 }, function( error ) { 2021 done( ! error ); 2022 } ); 2023 } ); 2024 2012 2025 grunt.registerTask( 'phpstan', 'Runs PHPStan on the entire codebase.', function() { 2013 2026 var done = this.async();
Note: See TracChangeset
for help on using the changeset viewer.