Skip to content

Commit 87cc746

Browse files
committed
ci: disable husky just for the deps install
1 parent 6720056 commit 87cc746

File tree

5 files changed

+1
-13
lines changed

5 files changed

+1
-13
lines changed

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
- name: Install dependencies
2626
if: steps.deps-cache.outputs.cache-hit != 'true'
2727
shell: bash
28-
run: npm install
28+
run: HUSKY=0 npm install
2929

3030
- name: Cache node modules
3131
if: steps.deps-cache.outputs.cache-hit != 'true'

.github/workflows/code-style-reusable.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: Code Style
33
on:
44
- workflow_call
55

6-
env:
7-
HUSKY: 0
8-
96
jobs:
107
lint:
118
name: Lint

.github/workflows/commit-lint-reusable.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: Commit Lint
33
on:
44
- workflow_call
55

6-
env:
7-
HUSKY: 0
8-
96
jobs:
107
commit-lint:
118
name: Validate PR commits with commitlint

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ concurrency:
99
group: ${{ github.workflow }}-${{ github.ref }}
1010
cancel-in-progress: true
1111

12-
env:
13-
HUSKY: 0
14-
1512
jobs:
1613
commit-lint:
1714
name: Commit Lint

.github/workflows/test-reusable.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: Test
33
on:
44
- workflow_call
55

6-
env:
7-
HUSKY: 0
8-
96
jobs:
107
test:
118
name: Test and report coverage

0 commit comments

Comments
 (0)