From 6545920d6b8b514cf4de561fd60fde28b65d3ca8 Mon Sep 17 00:00:00 2001 From: Anabella Buckvar Date: Thu, 12 Oct 2023 11:51:37 -0400 Subject: [PATCH] DOP-3772 npm and node versions --- .github/workflows/e2e-tests.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/unit-tests.yml | 2 +- .npmrc | 2 +- cli/.npmrc | 2 +- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 74a2cf32..550a1820 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - run: npm ci && npm ci --prefix cli - run: npm run bundle - run: npm run e2e diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ae202882..b7bd14f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: npm ci && npm ci --prefix cli - name: Create bundles @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: npm ci && npm ci --prefix cli - name: Create bundles diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index d8c7c76c..8b5d7a95 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - run: npm ci && npm ci --prefix cli - run: npm run bundle - run: npm test diff --git a/.npmrc b/.npmrc index e0cd6edb..63d836e9 100644 --- a/.npmrc +++ b/.npmrc @@ -1,5 +1,5 @@ registry=https://artifactory.corp.mongodb.com/artifactory/api/npm/npm/ -_auth=${NPM_BASE_64_AUTH} _email=${NPM_EMAIL} _always-auth=true git-tag-version=false +//artifactory.corp.mongodb.com/artifactory/api/npm/npm/:_auth=${NPM_BASE_64_AUTH} diff --git a/cli/.npmrc b/cli/.npmrc index e0cd6edb..63d836e9 100644 --- a/cli/.npmrc +++ b/cli/.npmrc @@ -1,5 +1,5 @@ registry=https://artifactory.corp.mongodb.com/artifactory/api/npm/npm/ -_auth=${NPM_BASE_64_AUTH} _email=${NPM_EMAIL} _always-auth=true git-tag-version=false +//artifactory.corp.mongodb.com/artifactory/api/npm/npm/:_auth=${NPM_BASE_64_AUTH} diff --git a/package.json b/package.json index 01b2b91a..7de6c66e 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "engines": { "node": ">=6.9", - "npm": ">=3.0.0" + "npm": ">=8.0.0" }, "author": "Roman Hotsiy ", "license": "MIT",