Skip to content

Commit

Permalink
ci: Don't install husky in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mhan83 committed Oct 17, 2024
1 parent 14d47d3 commit c43dd79
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
- name: Install Dependencies
if: ${{ steps.prep.outputs.tag_name == '' }}
run: npm ci
env:
HUSKY: 0

- name: Build Bundle
if: ${{ steps.prep.outputs.tag_name == '' }}
Expand Down Expand Up @@ -155,6 +157,8 @@ jobs:
- name: Install Dependencies
run: npm ci --production
env:
HUSKY: 0
if: ${{ steps.prep.outputs.asset_id == '' }}

- name: Bundle Directory
Expand Down Expand Up @@ -231,6 +235,8 @@ jobs:
- name: Install Dependencies
run: npm ci --production
env:
HUSKY: 0
if: ${{ steps.prep.outputs.asset_id == '' }}

- name: Setup ffmpeg
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:

- name: Install Dependencies
run: npm ci
env:
HUSKY: 0

- name: Build
run: npm run build
Expand Down Expand Up @@ -80,6 +82,8 @@ jobs:
run: npm version --no-git-tag-version 1.0.0

- run: npm ci --production
env:
HUSKY: 0
- run: npm run build

- name: Setup ffmpeg
Expand Down Expand Up @@ -138,6 +142,8 @@ jobs:

- name: Install Dependencies
run: npm ci --production
env:
HUSKY: 0

- name: Build
run: npm run build
Expand Down

0 comments on commit c43dd79

Please sign in to comment.