Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,5 @@ jobs:
npm install
fi

npm run lint --if-present
npm test --if-present
npm run typecheck --if-present
npm run build --if-present
npm run release:check
bash scripts/validate.sh
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "npm run build && node --test dist/**/*.test.js",
"test": "npm run build && node --test dist/*.test.js",
"smoke": "bash scripts/smoke.sh",
"package:smoke": "npm pack --dry-run",
"release:check": "npm test && npm run smoke && npm run package:smoke"
"release:check": "npm run check && npm test && npm run smoke && npm run package:smoke"
},
"keywords": ["git", "diff", "risk", "budget", "cli", "local-first"],
"author": "Roger Chappel",
Expand Down