From 706a48629fc92b3e78841760c0316168ec7257ad Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Oct 2025 00:30:33 -0700 Subject: [PATCH] ci(lint): Optimize dependency installation Updates the 'lint.yml' workflow to use 'npm ci --only=dev'. This ensures that only 'devDependencies' are installed, making the linting job faster and more efficient as it doesn't need to download and install the main application dependencies. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 16c3a9fdee..2c4a526004 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,7 +24,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --only=dev' - name: 'Run linting' run: 'npm run lint:all'