From 40c2a3087f391b946374dc6b78bf3e591c449a17 Mon Sep 17 00:00:00 2001 From: Mohammad Sajad Pourajam Date: Fri, 20 Mar 2026 23:48:29 +0330 Subject: [PATCH] CI/CD --- .gitea/workflows/frontend.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/frontend.yml b/.gitea/workflows/frontend.yml index 643e244..7378fb3 100644 --- a/.gitea/workflows/frontend.yml +++ b/.gitea/workflows/frontend.yml @@ -55,18 +55,23 @@ jobs: npm config set fetch-retries 5 npm config set fetch-retry-mintimeout 20000 + - name: Test + run: | + ls + pwd + - name: Install dependencies run: | - cd frontend + cd Frontend npm install --registry=https://package-mirror.liara.ir/repository/npm/ - name: Build project run: | - cd frontend + cd Frontend npm run build --if-present - name: Run Lint run: | - cd frontend + cd Frontend npm run lint --if-present