Skip to content

Commit

Permalink
Merge pull request #1483 from NicoPennec/fix/CI
Browse files Browse the repository at this point in the history
Disable Git hooks on CI workflows
  • Loading branch information
NicoPennec committed Jul 9, 2024
2 parents 47441da + 4d5d86f commit c7c2740
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
cache: 'npm'
- name: Run tests
env:
HUSKY: 0
NODE_OPTIONS: '--max_old_space_size=8192'
run: |
echo "Node.js $(node -v)"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
fetch-depth: 0
- name: Build release
env:
HUSKY: 0
NODE_OPTIONS: '--max_old_space_size=8192'
run: |
echo "Node.js $(node -v)"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: Update Kitsu on staging server
uses: appleboy/ssh-action@v0.1.4
env:
HUSKY: 0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -30,4 +32,3 @@ jobs:
echo "${KITSU_VERSION}" > dist/.version.txt
echo "${GIT_COMMIT}" > dist/.commit.txt
echo "${GIT_TAG}" > dist/.tag.txt

0 comments on commit c7c2740

Please sign in to comment.