Skip to content

Commit

Permalink
ci: disable husky just for the deps install
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrishajev committed Apr 22, 2024
1 parent 6720056 commit 87cc746
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
- name: Install dependencies
if: steps.deps-cache.outputs.cache-hit != 'true'
shell: bash
run: npm install
run: HUSKY=0 npm install

- name: Cache node modules
if: steps.deps-cache.outputs.cache-hit != 'true'
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/code-style-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Code Style
on:
- workflow_call

env:
HUSKY: 0

jobs:
lint:
name: Lint
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/commit-lint-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Commit Lint
on:
- workflow_call

env:
HUSKY: 0

jobs:
commit-lint:
name: Validate PR commits with commitlint
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
HUSKY: 0

jobs:
commit-lint:
name: Commit Lint
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Test
on:
- workflow_call

env:
HUSKY: 0

jobs:
test:
name: Test and report coverage
Expand Down

0 comments on commit 87cc746

Please sign in to comment.