Skip to content

Commit

Permalink
Move check and test script to pre-push git hook (kubernetes#5967)
Browse files Browse the repository at this point in the history
  • Loading branch information
damingerdai authored Apr 9, 2021
1 parent e230d68 commit bc6f967
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,3 @@
. "$(dirname "$0")/_/husky.sh"

npx --no-install lint-staged
npm run check
npm run check:license
npm run test:frontend
npm run test:backend
20 changes: 20 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/sh
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
. "$(dirname "$0")/_/husky.sh"

npm run check
npm run check:license
npm run test:frontend
npm run test:backend

0 comments on commit bc6f967

Please sign in to comment.