mirror of
https://github.com/purrgrammer/grimoire.git
synced 2026-04-10 15:36:53 +02:00
feat: Add npm install step to verify skill
Add npm install as the first step in the verification suite to ensure all dependencies are installed before running lint, tests, and build. This prevents failures due to missing or outdated dependencies.
This commit is contained in:
@@ -2,9 +2,10 @@ Run full verification suite for the current changes.
|
||||
|
||||
Execute these checks in sequence, stopping on first failure:
|
||||
|
||||
1. **Lint Check**: `npm run lint`
|
||||
2. **Test Suite**: `npm run test:run`
|
||||
3. **Build Check**: `npm run build`
|
||||
1. **Install Dependencies**: `npm install`
|
||||
2. **Lint Check**: `npm run lint`
|
||||
3. **Test Suite**: `npm run test:run`
|
||||
4. **Build Check**: `npm run build`
|
||||
|
||||
For each step:
|
||||
- If it passes, proceed to the next
|
||||
|
||||
Reference in New Issue
Block a user