diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 4107e553bf..88f4a33f41 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -11,7 +11,7 @@ on: env: GITHUB_API_URL_BASE: https://api.github.com/repos/${{ github.repository }} # Node.js - NODE_VERSION: '16.x' + NODE_VERSION: '17.7.0' NPM_REGISTRY_URL: 'https://registry.npmjs.org' # Slack notifications SLACK_WEBHOOK: ${{ secrets.GHA_NOTIFICATIONS_WEBHOOK_URL }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37585d34a1..335ed63467 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ on: env: # Node.js - NODE_VERSION: '16.x' + NODE_VERSION: '17.7.0' NPM_REGISTRY_URL: 'https://registry.npmjs.org' NODE_AUTH_TOKEN: ${{ secrets.READ_ONLY_NPM_TOKEN }} # Slack Notifications diff --git a/README.md b/README.md index d275fa1e0c..94b6d8047c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [Lerna](https://lerna.js.org/)를 이용해서 작업하고 있습니다. -npm 7 이상을 요구합니다. 버전이 낮으면 업그레이드 해주세요. +npm 8.5 이상을 요구합니다. 버전이 낮으면 업그레이드 해주세요. ```sh npm install -g npm@latest diff --git a/package-lock.json b/package-lock.json index c0dcc57cd5..d9184ca17f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,7 +56,7 @@ "utility-types": "^3.10.0" }, "engines": { - "npm": ">= 7" + "npm": ">= 8.5" } }, "docs": { diff --git a/package.json b/package.json index 5c049b9125..fbed4ea694 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "root", "private": true, "engines": { - "npm": ">= 7" + "npm": ">= 8.5" }, "scripts": { "dev": "npm run build && concurrently --names watch:resources,watch:declarations,docs --kill-others 'npm:watch:resources' 'npm:watch:declarations' 'npm:dev-docs'",