From 7c89138c6a6e4b4ac8ab79c1aa0c0db53ea6a63e Mon Sep 17 00:00:00 2001 From: poonam yadav Date: Fri, 27 Oct 2023 14:43:01 +0530 Subject: [PATCH] ELEMENTS-1717: Update Nuxeo elements node version(node18) --- .github/workflows/lint.yaml | 2 +- .github/workflows/main.yaml | 2 +- .github/workflows/preview.yaml | 2 +- .github/workflows/promote.yaml | 2 +- .github/workflows/storybook.yaml | 5 ++++- .github/workflows/test.yaml | 4 ++-- karma.conf.js | 1 + package.json | 3 ++- 8 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 36fbbddb1d..a1a801276a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -29,7 +29,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 93677aac14..f1ad56f390 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -41,7 +41,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index 06e1d919e0..de5dc22d7a 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index 41c8ed0d62..90b9cf32cf 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' diff --git a/.github/workflows/storybook.yaml b/.github/workflows/storybook.yaml index 7e7b360134..04d286b306 100644 --- a/.github/workflows/storybook.yaml +++ b/.github/workflows/storybook.yaml @@ -29,7 +29,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' @@ -45,6 +45,8 @@ jobs: - name: Build storybook working-directory: storybook + env: + NODE_OPTIONS: --openssl-legacy-provider run: | npx build-storybook -o dist -s ./public @@ -52,5 +54,6 @@ jobs: if: ${{ env.BRANCH_NAME == 'maintenance-3.0.x' }} env: GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} + NODE_OPTIONS: --openssl-legacy-provider working-directory: storybook run: npm run deploy -- --ci diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1cf3d0daee..30ad10fbf3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,7 +32,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: 'https://packages.nuxeo.com/repository/npm-public/' scope: '@nuxeo' @@ -47,4 +47,4 @@ jobs: env: SAUCE_USERNAME: nuxeo-elements SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} - run: npm run test + run: npm run test \ No newline at end of file diff --git a/karma.conf.js b/karma.conf.js index ddca2e34e0..2b79b46298 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -50,6 +50,7 @@ module.exports = (config) => { config.set({ sauceLabs, + hostname: '127.0.0.1', basePath: '', singleRun: true, browsers: config.browsers && config.browsers.length > 0 ? config.browsers : Object.keys(customLaunchers), diff --git a/package.json b/package.json index f3c94a02c9..cc2b214f52 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": "Nuxeo", "license": "Apache-2.0", "engines": { - "node": ">=14.0.0" + "node": ">=18.0.0" }, "scripts": { "postinstall": "check-engine --ignore", @@ -84,6 +84,7 @@ "dependencies": { "@nuxeo/moment": "^2.24.0-nx.0", "@nuxeo/paper-typeahead": "^0.6.0-nx.0", + "@nuxeo/testing-helpers": "^3.0.30", "@polymer/iron-autogrow-textarea": "^3.0.1", "@polymer/iron-collapse": "^3.0.0", "@polymer/iron-flex-layout": "^3.0.0",