Skip to content

Commit

Permalink
fix: 🐞 fix prepare script in ci
Browse files Browse the repository at this point in the history
fix prepare script in ci
  • Loading branch information
Tal Rofe committed Apr 9, 2022
1 parent d45361d commit bb2f7f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 16

- name: Installing dependencies
run: yarn install --immutable --immutable-cache --check-cache
run: yarn install --immutable --immutable-cache --check-cache --ignore-scripts

- name: Check unused dependencies
run: yarn run depcheck
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"scripts": {
"preinstall": "npx only-allow yarn",
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig || exit 0",
"prepare": "run-p husky:install git:config",
"git:config": "git config --local include.path ../.gitconfig",
"prepare": "run-p husky:install git:config || exit 0",
"build": "tsc --project ./tsconfig.build.json && tsc-alias --project ./tsconfig.build.json",
"lint": "eslint",
"lint:fix": "eslint --fix",
Expand Down

0 comments on commit bb2f7f7

Please sign in to comment.