diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6937620..9e88cd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,10 +40,9 @@ jobs: with: node-version: 22 cache: npm - cache-dependency-path: frontend/package-lock.json + cache-dependency-path: package-lock.json - uses: extractions/setup-just@v2 - - run: npm ci - working-directory: frontend + - run: npm ci -w frontend - run: just ci working-directory: frontend @@ -56,9 +55,8 @@ jobs: with: node-version: 22 cache: npm - cache-dependency-path: worker/php/package-lock.json + cache-dependency-path: package-lock.json - uses: extractions/setup-just@v2 - - run: npm ci - working-directory: worker/php + - run: npm ci -w worker/php - run: just ci working-directory: worker/php |
