Skip to content

Commit

Permalink
Merge branch 'SLB-455-card-subgrid' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
dan2k3k4 committed Oct 16, 2024
2 parents 509e544 + 5db01b3 commit d07d304
Show file tree
Hide file tree
Showing 18 changed files with 745 additions and 219 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ jobs:
TURBO_TOKEN: 'local'
TURBO_TEAM: 'local'

- name: 'Logs: cms'
run: cat /tmp/cms.log || true
if: always()
- name: 'Logs: website'
run: cat /tmp/website.log || true
if: always()
- name: 'Logs: preview'
run: cat /tmp/preview.log || true
if: always()

- name: Upload Playwright report
uses: actions/upload-artifact@v4
if: failure()
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/test_without_turbo_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ jobs:
TURBO_TOKEN: 'local'
TURBO_TEAM: 'local'

- name: 'Logs: cms'
run: cat /tmp/cms.log || true
if: always()
- name: 'Logs: website'
run: cat /tmp/website.log || true
if: always()
- name: 'Logs: preview'
run: cat /tmp/preview.log || true
if: always()

- name: Upload Playwright report
uses: actions/upload-artifact@v4
if: failure()
Expand Down
5 changes: 2 additions & 3 deletions apps/cms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
"amazeeio/drupal_integrations": "^0.3.7",
"amazeelabs/default-content": "^1.2.11",
"amazeelabs/graphql_directives": "^2.4",
"amazeelabs/proxy-drupal-core": "^1.1.12",
"amazeelabs/proxy-graphql": "^1.1.7",
"amazeelabs/proxy-gutenberg": "^1.3",
"amazeelabs/silverback-cli": "^2.9.13",
"amazeelabs/silverback_autosave": "^1.1",
"amazeelabs/silverback_campaign_urls": "^1.0.5",
Expand All @@ -55,11 +52,13 @@
"drupal/config_pages": "^2.14",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10",
"drupal/default_content": "2.0.0-alpha2",
"drupal/dropzonejs": "^2.8",
"drupal/entity_usage": "^2.0@beta",
"drupal/environment_indicator": "^4.0.14",
"drupal/field_group": "^3.4",
"drupal/focal_point": "^2.1",
"drupal/graphql": "^4.9",
"drupal/honeypot": "^2.1.2",
"drupal/key_auth": "^2.1",
"drupal/lagoon_logs": "^2.1.1",
Expand Down
211 changes: 34 additions & 177 deletions apps/cms/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions apps/cms/scaffold/settings.php.append.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,11 @@ if (getenv('LAGOON_ENVIRONMENT') !== 'prod') {
// Disable key permissions check for Simple OAuth.
// https://www.drupal.org/project/simple_oauth/issues/3021054
$settings['simple_oauth.key_permissions_check'] = FALSE;

// Repeat this declaration, so it is possible to override any setting or service.
if (file_exists(__DIR__ . '/settings.local.php')) {
include __DIR__ . '/settings.local.php';
}
if (file_exists(__DIR__ . '/services.local.yml')) {
$settings['container_yamls'][] = __DIR__ . '/services.local.yml';
}
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"scripts": {
"test:static": "tsc --noEmit && eslint '**/*.{ts,tsx,js,jsx}' --ignore-path='./.gitignore'",
"full-rebuild": "pnpm clean && pnpm build:gatsby",
"start:drupal": "pnpm run --filter @custom/cms start",
"start:drupal": "pnpm run --filter @custom/cms start >> /tmp/cms.log 2>&1",
"build:drupal": "CLOUDINARY_CLOUDNAME=test pnpm start-test start:drupal 8888 build:gatsby",
"build:gatsby": "gatsby build",
"build": "if node has-drupal.mjs; then pnpm build:drupal; else pnpm build:gatsby; fi",
Expand Down
1 change: 1 addition & 0 deletions devbox.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"env": {
"GATSBY_TELEMETRY_DISABLED": "1",
"DEVBOX_COREPACK_ENABLED": "true",
"PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS": "true"
},
Expand Down
Loading

0 comments on commit d07d304

Please sign in to comment.