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