Skip to content

Commit

Permalink
Merge pull request #59 from hex-digital/fix/workflows
Browse files Browse the repository at this point in the history
fix: fix GH workflows
  • Loading branch information
Jamiewarb authored Oct 21, 2024
2 parents 9bde909 + babcdcc commit 8c21d38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ jobs:
run: pnpm g:build --filter="./packages/*"

- name: Build storybook 🧐
run: yarn turbo build-storybook --filter="./packages/*"
run: pnpm g:build-storybook --filter="./packages/*"
env:
STORYBOOK_DISABLE_TELEMETRY: 1
2 changes: 1 addition & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const rules = {
'**/*.{json,md,mdx,css,html,yml,yaml,scss,ts,js,tsx,jsx,mjs}': (
filenames
) => {
return [`yarn prettier --write ${concatFilesForPrettier(filenames)}`];
return [`pnpm prettier --write ${concatFilesForPrettier(filenames)}`];
},
};

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"deps:fix": "syncpack fix-mismatches",
"deps:format": "syncpack format",
"g:build": "turbo run lint --color",
"g:build-storybook": "turbo run build-storybook --color",
"g:lint": "TIMING=1 turbo run lint --color",
"g:lint:fix": "turbo run lint:fix --color",
"g:prettier": "turbo run prettier --color",
Expand Down
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"build-storybook": {},
"lint": {
"env": ["TIMING"]
},
Expand Down

0 comments on commit 8c21d38

Please sign in to comment.