Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

# CI / quality-tool configs (not consumed at runtime)
/phpstan.dist.neon
/phpstan-baseline.neon
/phpunit.xml.dist
/psalm.xml
/psalm-baseline.xml
Expand Down Expand Up @@ -65,7 +66,7 @@ launch.json
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
/playwright/
#< Playwright

###> vincentlanglet/twig-cs-fixer ###
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/github_build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,13 @@ jobs:
composer install --no-dev -o --classmap-authoritative
docker compose run --rm --env APP_ENV=prod phpfpm composer clear-cache

- name: Set compose node user
run: echo "COMPOSE_NODE_USER=$(id -u):$(id -g)" >> "$GITHUB_ENV"

- name: NPM install and build
run: |
docker compose run --rm node npm install
docker compose run --rm node npm run build
docker compose run --rm --env HOME=/tmp node npm install
docker compose run --rm --env HOME=/tmp node npm run build

- name: Cleanup before packaging
run: |
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- Fixed `Create Github Release` workflow that failed cleanup because `node_modules/` was owned by root.

## [3.0.0-rc1] - 2026-05-04

- Cleaned up and documented CI workflows; api-spec workflow now reports breaking changes.
Expand Down
1 change: 1 addition & 0 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:

node:
image: node:24
user: "${COMPOSE_NODE_USER:-root}"
command: npm run dev
networks:
- app
Expand Down