Skip to content

Commit

Permalink
chore: fix hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 17, 2023
2 parents 8230aaa + 87c22b3 commit b0697da
Show file tree
Hide file tree
Showing 5 changed files with 4,399 additions and 2,093 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:17.9
- image: cimg/node:19.7
steps:
- checkout
- run:
name: Update NPM version
command: npm install -g npm@latest
command: sudo npm install -g npm@latest
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
Expand Down Expand Up @@ -78,4 +78,4 @@ workflows:
- integration_tests:
requires:
- build


2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no commitlint --edit $1
npx --no-install commitlint --edit $1
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no lint-staged
npx --no-install lint-staged

0 comments on commit b0697da

Please sign in to comment.