From d9548fb661ed27854a9f7c7537f13826e0da05d4 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 16 Jan 2026 22:05:23 +0000 Subject: [PATCH] fix: correct working-directory path for ESLint step in CI The epicshop add command clones the repo to ./workshop// but the ESLint step was using ./workshop/ as working directory. Updated to use ./workshop/${{ github.event.repository.name }} to match the actual path. Co-authored-by: me --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 6c6fdb0..ec9c335 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -32,7 +32,7 @@ jobs: - name: ⬣ ESLint run: npm run lint - working-directory: ./workshop + working-directory: ./workshop/${{ github.event.repository.name }} # TODO: get this working again # - name: ⬇️ Install Playwright