Skip to content

Commit

Permalink
node18 with logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshkumar1019 committed Dec 22, 2023
1 parent 0b27226 commit 850e5ae
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
registry-url: ${{ env.NPM_REPOSITORY }}
scope: '@nuxeo'
node-version: 16
node-version: 18

- uses: actions/setup-java@v2
with:
Expand All @@ -58,6 +58,9 @@ jobs:
</servers>
</settings>' > ~/.m2/settings.xml
- name: Check Nexus Repository Authentication
run: |
curl -u ${{ secrets.PACKAGES_AUTH_USER }}:${{ secrets.PACKAGES_AUTH_TOKEN }} ${{ env.NPM_REPOSITORY }}
- name: Determine nuxeo-elements branch to link
id: pick_nuxeo_elements_branch
Expand Down Expand Up @@ -99,15 +102,26 @@ jobs:
- name: List npm config
run: |
echo "List Files"
ls -al
echo "view npmrc"
cat .npmrc
echo "Npm Congig List"
npm config ls -l
pwd
echo "Link Files"
echo ${ELEMENTS_CORE}
echo nuxeo-elements/core/${ELEMENTS_CORE}
- name: Link elements to Web UI
run: |
export NPM_CONFIG_LOGLEVEL=silly
npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/core/${ELEMENTS_CORE} --verbose
npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/ui/${ELEMENTS_UI} --verbose
npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/dataviz/${ELEMENTS_DATAVIZ} --verbose
npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/testing-helpers/${ELEMENTS_HELPERS} --verbose
- name: Functional tests
env:
RUN_ALL: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "Apache-2.0",
"vendor": "Nuxeo",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"config": {
"workboxCli": "3.6.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-designer-catalog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "Apache-2.0",
"vendor": "Nuxeo",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"private": true,
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-web-ui-ftest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"license": "Apache-2.0",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"dependencies": {
"@babel/core": "^7.15.0",
Expand Down
2 changes: 1 addition & 1 deletion plugin/a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@nuxeo/nuxeo-web-ui-a11y",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"start": "npm run test",
Expand Down

0 comments on commit 850e5ae

Please sign in to comment.