From a7f4020c085cf19c8997f458155c794c6c53ac98 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 6 Jan 2025 22:13:56 +0530 Subject: [PATCH] feat: bumped nodejs from 16 to 20 --- .github/workflows/check-fe-ts-and-lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-fe-ts-and-lint.yml b/.github/workflows/check-fe-ts-and-lint.yml index 17e5a9d74..9b4d363cf 100644 --- a/.github/workflows/check-fe-ts-and-lint.yml +++ b/.github/workflows/check-fe-ts-and-lint.yml @@ -18,18 +18,18 @@ jobs: steps: - name: ☁️ Checkout source uses: actions/checkout@v3 - - name: 🔧 Setup Node 16 + - name: 🔧 Setup Node 20 uses: actions/setup-node@v3 with: - node-version: "16" + node-version: "20" cache: "npm" cache-dependency-path: frontend/package-lock.json - name: 📦 Install dependencies run: npm install working-directory: frontend - name: 🏗️ Run Type check - run: npm run type:check + run: npm run type:check working-directory: frontend - name: 🏗️ Run Link check - run: npm run lint:fix + run: npm run lint:fix working-directory: frontend