From f3b8e5e8b92fd0ccfe7c133b6dce9d877eaf5fcd Mon Sep 17 00:00:00 2001 From: Emmanuel <154705254+codesmith-emmy@users.noreply.github.com> Date: Tue, 21 May 2024 12:16:23 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c33aa26..a09dbf5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,8 +10,12 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v2.3.2 + - name: Clear NPM cache + run: npm cache clean --force + - name: Update NPM + run: npm install -g npm@latest - name: Install Dependencies - run: npm install --legacy-peer-deps + run: npm install - name: Build env: CI: false