From 09d0822a8d69484e5976cb79bdda5f29f5b96342 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Tue, 19 Nov 2024 15:09:46 +0300 Subject: [PATCH] fix: Adjust working directory for build-web CI job --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49ae9646..c56b5a28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,11 +77,13 @@ jobs: with: node-version: '18' cache: 'yarn' - cache-dependency-path: yarn.lock + cache-dependency-path: packages/web/yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: yarn --frozen-lockfile + working-directory: packages/web - run: cd packages/web && yarn build + working-directory: packages/web env: CI: false - run: echo "🍏 This job's status is ${{ job.status }}."