aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAnderson Shindy Oki <[email protected]>2024-06-10 10:24:02 +0900
committerGitHub <[email protected]>2024-06-09 21:24:02 -0400
commit36730a17d01f21dc9d1250025da0c4668b027cc4 (patch)
tree2c607cf5e57101b4bb431a6f02098b0b4e7c578a
parentd75c198c6c81ce85b0b7e8d6cbc664f70778ce63 (diff)
downloadbazarr-36730a17d01f21dc9d1250025da0c4668b027cc4.tar.gz
bazarr-36730a17d01f21dc9d1250025da0c4668b027cc4.zip
no log: Added node version lockv1.4.4-beta.2
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/release_beta_to_dev.yaml2
-rw-r--r--.github/workflows/release_dev_to_master.yaml2
-rw-r--r--.github/workflows/test_bazarr_execution.yml2
-rw-r--r--frontend/.nvmrc1
-rw-r--r--frontend/README.md5
6 files changed, 9 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 79b1fc149..c7aebfac4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,7 +36,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
- node-version: "lts/*"
+ node-version-file: "${{ env.UI_DIRECTORY }}/.nvmrc"
- name: Install dependencies
run: npm install
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml
index f7155984c..d5579f70a 100644
--- a/.github/workflows/release_beta_to_dev.yaml
+++ b/.github/workflows/release_beta_to_dev.yaml
@@ -38,7 +38,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
- node-version: "lts/*"
+ node-version-file: "${{ env.UI_DIRECTORY }}/.nvmrc"
- name: Install Global Tools
run: npm install -g release-it auto-changelog
diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml
index dddf603b0..13eaefee7 100644
--- a/.github/workflows/release_dev_to_master.yaml
+++ b/.github/workflows/release_dev_to_master.yaml
@@ -40,7 +40,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
- node-version: "lts/*"
+ node-version-file: "${{ env.UI_DIRECTORY }}/.nvmrc"
- name: Install Global Tools
run: npm install -g release-it auto-changelog
diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml
index 034eb782a..2ef1a8801 100644
--- a/.github/workflows/test_bazarr_execution.yml
+++ b/.github/workflows/test_bazarr_execution.yml
@@ -24,7 +24,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
- node-version: "lts/*"
+ node-version-file: "${{ env.UI_DIRECTORY }}/.nvmrc"
- name: Install UI Dependencies
run: npm install
diff --git a/frontend/.nvmrc b/frontend/.nvmrc
new file mode 100644
index 000000000..973f49d55
--- /dev/null
+++ b/frontend/.nvmrc
@@ -0,0 +1 @@
+20.13
diff --git a/frontend/README.md b/frontend/README.md
index 135ccb4f6..b3af2f6f4 100644
--- a/frontend/README.md
+++ b/frontend/README.md
@@ -2,9 +2,12 @@
## Dependencies
-- [Node.js](https://nodejs.org/)
+- Either [Node.js](https://nodejs.org/) installed manually or using [Node Version Manager](https://github.com/nvm-sh/nvm)
- npm (included in Node.js)
+> The recommended Node version to use and maintained is managed on the `.nvmrc` file. You can either install manually
+> or use `nvm install` followed by `nvm use`.
+
## Getting Started
1. Clone or download this repository