Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(init): add pretest script #1142

Merged
merged 1 commit into from
Dec 14, 2021
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"typescript": "^4.5.4"
},
"scripts": {
"pretest": "npm run lint",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage && npm run test:types",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
Expand Down
2 changes: 2 additions & 0 deletions test/__snapshots__/init.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Object {
"lint:types:watch": "npm run lint:types -- --watch",
"prepare": "husky install",
"prerelease": "git switch main && git pull && npm ci && npm run clean && npm test && npm run lint && npm run clean",
"pretest": "npm run lint",
"prettier": "prettier --ignore-path .gitignore .",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
Expand Down Expand Up @@ -117,6 +118,7 @@ Object {
"lint:types:watch": "npm run lint:types -- --watch",
"prepare": "husky install",
"prerelease": "git switch main && git pull && npm ci && npm run clean && npm test && npm run lint && npm run clean",
"pretest": "npm run lint",
"prettier": "prettier --ignore-path .gitignore .",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
Expand Down