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.
This commit is contained in:
mkorwel
2025-10-22 00:30:33 -07:00
parent 17b3b264e6
commit 706a48629f
+1 -1
View File
@@ -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'