From 006bdbed10fae51344c78acdb6e32582cab5dd8f Mon Sep 17 00:00:00 2001 From: Santhoshkumar <117272529+Santhosh-testsigma@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:57:30 +0530 Subject: [PATCH] Upgraded node version to 18 --- .github/workflows/cd.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 57878422..724a2498 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,13 +12,13 @@ jobs: - name: Install libvips run: sudo apt-get install libvips - uses: actions/checkout@v2 - - name: Setup Node 16 + - name: Setup Node 18 uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '18' - name: Install dependencies run: | - npm i --force --unsafe-perm + rm -rf node_modules && npm i --force --unsafe-perm - name: Force installing sharp run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --unsafe-perm --force - name: 'Create env file' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1cc2cf6..3636f303 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,15 +11,15 @@ jobs: - name: Install libvips run: sudo apt-get install libvips - uses: actions/checkout@v2 - - name: Setup Node 12 + - name: Setup Node 18 uses: actions/setup-node@v2 with: - node-version: '12' + node-version: '18' - name: Install dependencies run: | rm -rf node_modules && npm i --force --unsafe-perm - name: Force installing sharp - run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force + run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force --unsafe-perm - name: 'Create env file' run: | touch .env