Skip to content

Commit 4306ce3

Browse files
Fix/GitHub workflow (#3)
* added new rules * fix github workflows
1 parent eab496e commit 4306ce3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
node-version: ${{ matrix.node-version }}
3434
cache: 'npm'
3535
- name: Install dependencies
36-
run: npm ci
36+
run: HUSKY=0 npm ci
3737
- name: Run tests
3838
run: npm run lint

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: 'lts/*'
2121
cache: 'npm'
2222
registry-url: 'https://registry.npmjs.org'
23-
- run: npm ci
23+
- run: HUSKY=0 npm ci
2424
- run: npm publish --access public
2525
env:
2626
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)