Skip to content

Commit 3a86a24

Browse files
committed
Attempt to disable husky on CI and run all tests
1 parent 0803748 commit 3a86a24

File tree

9 files changed

+14
-3
lines changed

9 files changed

+14
-3
lines changed

.github/workflows/gradle-build-feature.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- 'doc-**/*'
99
- 'hotfix-**/*'
1010
- 'dependabot/**/*'
11+
env:
12+
HUSKY: 0
1113
jobs:
1214
build:
1315
runs-on: ubuntu-latest

.github/workflows/gradle-build-native-feature.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- 'doc-**/*'
99
- 'hotfix-**/*'
1010
- 'dependabot/**/*'
11+
env:
12+
HUSKY: 0
1113
jobs:
1214
build:
1315
runs-on: ubuntu-latest

.github/workflows/gradle-build-production.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- "master"
66
env:
7+
HUSKY: 0
78
PROJECT_ID: ${{ secrets.RUN_PROJECT }}
89
RUN_REGION: us-central1
910
SERVICE_NAME: checkins-master

.github/workflows/gradle-build-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Gradle Publish to GitHub Packages
22
on:
33
release:
44
types: [created]
5+
env:
6+
HUSKY: 0
57
jobs:
68
build:
79
runs-on: ubuntu-latest

.github/workflows/gradle-dependency-submission.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Gradle Dependency Submission
33
on:
44
push:
55
branches: [ 'develop', 'master', 'feature-2532/graal' ]
6-
6+
env:
7+
HUSKY: 0
78
permissions:
89
contents: write
910

.github/workflows/gradle-deploy-develop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- 'develop'
66
env:
7+
HUSKY: 0
78
PROJECT_ID: ${{ secrets.RUN_PROJECT }}
89
RUN_REGION: us-central1
910
SERVICE_NAME: checkins-develop

.github/workflows/gradle-deploy-native-develop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- 'develop'
66
env:
7+
HUSKY: 0
78
PROJECT_ID: ${{ secrets.RUN_PROJECT }}
89
RUN_REGION: us-central1
910
SERVICE_NAME: checkins-develop-native

.github/workflows/jekyll.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
# Runs on pushes targeting the default branch
1111
push:
1212
branches: [develop]
13+
env:
14+
HUSKY: 0
1315

1416
# Allows you to run this workflow manually from the Actions tab
1517
workflow_dispatch:

web-ui/.husky/pre-push

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
cd web-ui
2-
CI=true yarn test
1+
./gradlew check

0 commit comments

Comments
 (0)