From af6f6fa0fc152e831e2eb8044737cfb9c60cf594 Mon Sep 17 00:00:00 2001
From: Bartek Wrona <wrona@syncad.com>
Date: Thu, 9 May 2024 13:47:08 +0200
Subject: [PATCH] Eliminated yaml linter complaints

---
 templates/npm_projects.gitlab-ci.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/templates/npm_projects.gitlab-ci.yml b/templates/npm_projects.gitlab-ci.yml
index 0a3dc72..98f229b 100644
--- a/templates/npm_projects.gitlab-ci.yml
+++ b/templates/npm_projects.gitlab-ci.yml
@@ -15,14 +15,14 @@ variables:
 
     FF_NETWORK_PER_BUILD: 1
 
-  image: ${EMSCRIPTEN_IMAGE} # this image contains all required tools and preinstalled set of common npm packages
+  image: ${EMSCRIPTEN_IMAGE}  # this image contains all required tools and preinstalled set of common npm packages
 
   before_script:
     - git config --global --add safe.directory '*'
     - . "${NVM_DIR}/nvm.sh"  # This loads nvm environment
-    - nvm use "${NODEJS_VERSION}" # Force usage of preconfigured NodeJS version
-    - cd "${SOURCE_DIR}" # move to the project directory (where package.json file is located)
-    - pnpm install --frozen-lockfile # install all required dependencies
+    - nvm use "${NODEJS_VERSION}"  # Force usage of preconfigured NodeJS version
+    - cd "${SOURCE_DIR}"  # move to the project directory (where package.json file is located)
+    - pnpm install --frozen-lockfile  # install all required dependencies
 
 # Base definition for job performing an npm build step. Outputs packaged project in *.tgz form
 # tgz package path can be received by `BUILT_PACKAGE_PATH` .env variable
@@ -46,11 +46,11 @@ variables:
   artifacts:
     reports:
       dotenv:
-        - "${SOURCE_DIR}/built_package_info.env" # contains path to produced tgz
-        - "${SOURCE_DIR}/built_package_version_info.env" # contains information related to generated package version and git revision
+        - "${SOURCE_DIR}/built_package_info.env"  # contains path to produced tgz
+        - "${SOURCE_DIR}/built_package_version_info.env"  # contains information related to generated package version and git revision
 
     paths:
-      - "${DIST_DIR}/*.tgz" # Built package
+      - "${DIST_DIR}/*.tgz"  # Built package
       - "${DIST_DIR}/built_package_info.json"
 
     when: always
@@ -125,7 +125,7 @@ variables:
 
   script:
     - *npm_package_tgz_unpack
-   # project version info must be regenerated accoring to correct target registry, package scope and name
+    # project version info must be regenerated accoring to correct target registry, package scope and name
     - "/home/emscripten/scripts/npm_generate_version.sh" "${SOURCE_DIR}" "registry.npmjs.org/" "@hiveio" "${NPM_PACKAGE_NAME}"
     - echo -e "\e[0Ksection_start:$(date +%s):publishing[collapsed=false]\r\e[0KAttempting to publish a package to registry.npmjs.org..."
     - /home/emscripten/scripts/npm_publish.sh "${SOURCE_DIR}" "registry.npmjs.org/" "@hiveio" "${NPM_PUBLISH_TOKEN}"
-- 
GitLab