NTP-25387 | Range Error crash fix | Move back to NPM (#14498)

This commit is contained in:
Kshitij Pramod Ghongadi
2025-01-14 23:45:25 +05:30
committed by GitHub
parent cbacc25e02
commit 53948166b5
7 changed files with 12982 additions and 6766 deletions

View File

@@ -28,10 +28,8 @@ jobs:
node-version: 18.18.0
- name: Clean NPM Modules
run: npm cache clean --force
- name: Install yarn
run: npm install --global yarn
- name: Install Node Modules
run: yarn install
run: npm install
- name: Set up JDK 17
uses: actions/setup-java@v4
with:

View File

@@ -76,10 +76,8 @@ jobs:
node-version: 18.18.0
- name: Clean NPM Modules
run: npm cache clean --force
- name: Install yarn
run: npm install --global yarn
- name: Install Node Modules
run: yarn install
run: npm install
- name: Override Version Code
if: github.event_name == 'workflow_dispatch' && inputs.version_code != ''
run: sed -i 's/def VERSION_CODE = [0-9].*/def VERSION_CODE = ${{ inputs.version_code }}/g' app/build.gradle

View File

@@ -25,10 +25,8 @@ jobs:
node-version: 18.18.0
- name: Clean NPM Modules
run: npm cache clean --force
- name: Install yarn
run: npm install --global yarn
- name: Install Node Modules
run: yarn install
run: npm install
- name: Log Build Metadata
run: |
echo "Version Code: $(awk '/VERSION_CODE/ {print $4}' app/build.gradle)"

View File

@@ -24,10 +24,8 @@ jobs:
node-version: 18.18.0
- name: Clean NPM Modules
run: npm cache clean --force
- name: Install yarn
run: npm install --global yarn
- name: Install Node Modules
run: yarn install
run: npm install
- name: Get Version from package.json
id: get-version
shell: bash