From 6b67b27ff2bf355edc754a688dce84dced3d7d89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CIbrahim?= Date: Sat, 28 Sep 2024 22:09:13 +0100 Subject: [PATCH] ci: updat client ci --- .github/workflows/client_ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/client_ci.yml b/.github/workflows/client_ci.yml index ec48f0b..ea860b2 100644 --- a/.github/workflows/client_ci.yml +++ b/.github/workflows/client_ci.yml @@ -14,11 +14,10 @@ jobs: node-version: 18.x # install dependencies using clean install to avoid package lock updates - run: npm install -g pnpm - - run: cd client - - run: pnpm install --no-lockfile + - run: cd client && pnpm install --no-lockfile # - run: pnpm ci # build the project if necessary - - run: pnpm run build + - run: cd client && pnpm run build # prettier and lint - - run: pnpm run lint - - run: pnpm run format \ No newline at end of file + - run: cd client && pnpm run lint + - run: cd client && pnpm run format \ No newline at end of file