Skip to content

Commit 6bd8b45

Browse files
committed
TASK: Test patch neos stuff
1 parent d0d6c24 commit 6bd8b45

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/tests.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,29 @@ jobs:
6262
cd ${FLOW_PATH_ROOT}
6363
composer config --no-plugins allow-plugins.neos/composer-plugin true
6464
composer config repositories.tested-package path ../Flowpack.NodeTemplates
65+
66+
#
67+
# PATCHES
68+
#
69+
composer config --no-plugins allow-plugins.cweagans/composer-patches true
70+
composer require --no-update --no-interaction cweagans/composer-patches:^1.7.3
71+
patches=$(
72+
cat <<'EOF'
73+
{
74+
"neos/neos-ui": {
75+
"improvedNodeCreationHandler": "https://github.com/neos/neos-ui/pull/3519.patch"
76+
},
77+
"neos/neos-development-collection": {
78+
"tetheredNodeIdsDeterministic": "https://github.com/neos/neos-development-collection/pull/4313.patch"
79+
}
80+
}
81+
EOF
82+
)
83+
composer config extra.patches --json $patches
84+
#
85+
# PATCHES END
86+
#
87+
6588
composer require --no-update --no-interaction flowpack/nodetemplates:@dev
6689
6790
- name: Install dependencies

0 commit comments

Comments
 (0)