-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove test check from pre-push git hooks and add linters in ci (#61)
* ci: remove test check from pre-push git hooks * style: fix code formatting * fix: change dependabot package-ecosystem to npm * ci: check containers default versioning * ci: add linters in GH pipeline
- Loading branch information
1 parent
8373e42
commit ea9cf60
Showing
5 changed files
with
23 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "yarn" | ||
directory: "/" | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: "monthly" | ||
day: "friday" | ||
time: "16:00" | ||
timezone: "Europe/Warsaw" | ||
interval: 'monthly' | ||
day: 'friday' | ||
time: '16:00' | ||
timezone: 'Europe/Warsaw' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
module.exports = { | ||
hooks: { | ||
'pre-commit': 'yarn type-check && lint-staged', | ||
'pre-push': 'yarn test && yarn test:e2e', | ||
'commit-msg': 'commitlint -E HUSKY_GIT_PARAMS', | ||
}, | ||
}; |