You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/scripts/release-check.cjs
+13-18Lines changed: 13 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -202,9 +202,9 @@ function runStaticChecks() {
202
202
ensure(extractYamlDependencyConstraint(emulsifyInfo,'emulsify_tools')===composer.require['drupal/emulsify_tools'],'emulsify.info.yml must match the composer emulsify_tools constraint.');
203
203
ensure(extractYamlDependencyConstraint(whiskInfo,'emulsify_tools')===composer.require['drupal/emulsify_tools'],'whisk.info.yml must match the composer emulsify_tools constraint.');
204
204
ensure(extractYamlDependencyConstraint(whiskInfoStarter,'emulsify_tools')===composer.require['drupal/emulsify_tools'],'whisk.info.emulsify.yml must match the composer emulsify_tools constraint.');
205
-
ensure(themeReadinessWorkflow.includes(`- '${minCoreVersion}.*'`),'theme-readiness.yml should smoke test the supported Drupal patch line.');
206
-
ensure(themeReadinessWorkflow.includes(`- '^${minCoreVersion}'`),'theme-readiness.yml should smoke test the supported Drupal constraint.');
207
-
return`Root theme metadata and CI matrix align to Drupal ${minCoreVersion}.`;
205
+
ensure(themeReadinessWorkflow.includes(`DRUPAL_VERSION: '${minCoreVersion}.*'`),'theme-readiness.yml should smoke test the supported Drupal patch line.');
206
+
ensure(themeReadinessWorkflow.includes("PHP_VERSION: '8.4'"),'theme-readiness.yml should run readiness smoke checks on PHP 8.4.');
207
+
return`Root theme metadata and CI readiness checks align to Drupal ${minCoreVersion} on PHP 8.4.`;
208
208
});
209
209
210
210
runStaticCheck('Package metadata',()=>{
@@ -274,19 +274,18 @@ function runStaticChecks() {
274
274
functionrunSmokeChecks(){
275
275
if(options.skipSmoke){
276
276
addResult('SKIP','Stable9 template parity','Skipped with --skip-smoke.');
277
+
addResult('SKIP','Base theme render smoke','Skipped with --skip-smoke.');
277
278
addResult('SKIP','Generated theme smoke test','Skipped with --skip-smoke.');
278
-
addResult('SKIP','No-Stable9 smoke result','Skipped with --skip-smoke.');
279
279
addResult('SKIP','Favicon generation','Skipped with --skip-smoke.');
0 commit comments