From 9089230762ef7dd9a4084cc17032248a4c698e4c Mon Sep 17 00:00:00 2001 From: Callum Morris Date: Wed, 24 Sep 2025 13:50:44 +1200 Subject: [PATCH] feat: use npm install-clean in reusable-eslint workflow Reference: https://github.com/GeoNet/tickets/issues/18807 --- .github/workflows/reusable-eslint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-eslint.yml b/.github/workflows/reusable-eslint.yml index 589e3bcd..cdcfb36a 100644 --- a/.github/workflows/reusable-eslint.yml +++ b/.github/workflows/reusable-eslint.yml @@ -36,7 +36,7 @@ jobs: PATHS: ${{ inputs.paths }} run: | for path in $PATHS; do - npm install --prefix $path + npm install-clean --prefix $path done - name: Run ESLint id: eslint