File tree Expand file tree Collapse file tree 7 files changed +14
-9
lines changed
Expand file tree Collapse file tree 7 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 44 paths :
55 - " *.js"
66 - " *.json"
7- - " .github/workflows/*.yml "
7+ - " *.yaml "
88 - " cypress/**"
99 - " packages/**"
10+ - " .github/workflows/acceptance.yml"
1011
1112env :
1213 NODE_VERSION : 24.x
1920 steps :
2021 - uses : actions/checkout@v4
2122
22- - name : Use Node.js
23+ - name : Use Node.js ${{ env.NODE_VERSION }}
2324 uses : actions/setup-node@v4
2425 with :
2526 node-version : ${{ env.NODE_VERSION }}
Original file line number Diff line number Diff line change 66 - main
77
88env :
9- NODE_VERSION : 20 .x
9+ NODE_VERSION : 24 .x
1010 ADDON_NAME : volto-separator-block
1111
1212jobs :
Original file line number Diff line number Diff line change 44 paths :
55 - " *.js"
66 - " *.json"
7- - " .github/workflows/*.yml "
7+ - " *.yaml "
88 - " packages/**"
9+ - " .github/workflows/code.yml"
910
1011env :
1112 NODE_VERSION : 24.x
Original file line number Diff line number Diff line change 44 paths :
55 - " *.js"
66 - " *.json"
7- - " .github/workflows/*.yml "
7+ - " *.yaml "
88 - " packages/**"
9+ - " .github/workflows/i18n.yml"
910
1011env :
1112 NODE_VERSION : 24.x
Original file line number Diff line number Diff line change 44 paths :
55 - " *.js"
66 - " *.json"
7+ - " *.yaml"
78 - " packages/**"
89 - " .github/workflows/storybook.yml"
910
Original file line number Diff line number Diff line change 44 paths :
55 - " *.js"
66 - " *.json"
7- - " .github/workflows/*.yml "
7+ - " *.yaml "
88 - " packages/**"
9+ - " .github/workflows/unit.yml"
910
1011env :
1112 NODE_VERSION : 24.x
4344 run : make install
4445
4546 - name : Unit tests
46- run : make test-ci
47+ run : make ci-test
Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ module.exports = {
107107 [ ] ,
108108 defaultRazzleOptions ,
109109 ) ;
110- const AddonConfigurationRegistry = require ( '@plone/registry/src /addon-registry' ) ;
110+ const { AddonRegistry } = require ( '@plone/registry/addon-registry' ) ;
111111
112- const registry = new AddonConfigurationRegistry ( projectRootPath ) ;
112+ const { registry } = AddonRegistry . init ( projectRootPath ) ;
113113
114114 config = lessPlugin ( { registry } ) . modifyWebpackConfig ( {
115115 env : { target : 'web' , dev : 'dev' } ,
You can’t perform that action at this time.
0 commit comments