Skip to content

Commit

Permalink
remove prepare step as causes ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthendren committed Nov 14, 2023
1 parent ea74fcb commit bd14fe9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

env:
CI: true
NODE_VERSION: 16
NODE_VERSION: 20
PNPM_CACHE_FOLDER: .pnpm-store

jobs:
Expand Down
1 change: 0 additions & 1 deletion apps/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "pnpm codegen",
"codegen": "panda codegen ",
"dev": "rimraf .next && next dev -p 3001",
"build": "next build",
Expand Down
1 change: 0 additions & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"private": true,
"scripts": {
"postinstall": "pnpm dlx playwright@1.38.1 install --with-deps chromium",
"prepare": "pnpm codegen",
"codegen": "panda codegen",
"test": "pnpm dlx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'pnpm dlx http-server storybook-static --port 6006 --silent' 'pnpm dlx wait-on tcp:6006 && pnpm test-storybook'",
"test:live": "test-storybook",
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"test": "turbo run test",
"format": "prettier --write '**/{*.js,*.ts,*.tsx,*.json,*.md,*.mdx}'",
"format:check": "prettier -c '**/{*.js,*.ts,*.tsx,*.json,*.md,*.mdx}'",
"ci": "turbo run format:check build lint test",
"ci:1": "turbo run format:check build",
"ci:2": "turbo run lint test",
"ci": "pnpm run ci:1 && pnpm install && pnpn ci:2",
"ci:publish": "pnpm run ci:packages && pnpm run ci:storybook",
"ci:packages": "pnpm --filter=\"./presets/**\" --filter=\"./packages/**\" publish -r --publish-branch beta --access public",
"ci:storybook": "pnpm --filter @committed/ds-storybook run deploy-storybook --ci",
Expand Down
1 change: 0 additions & 1 deletion packages/ds/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"clean": "rimraf dist",
"debug": "panda debug",
"studio": "panda studio",
"prepare": "pnpm codegen",
"codegen": "panda codegen",
"dev": "tsc --watch",
"build:ts": "tsc",
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"outputs": ["coverage/**"],
"dependsOn": ["build"]
},
"lint": {},
"lint": {
"dependsOn": ["build"]
},
"dev": {
"dependsOn": ["codegen"],
"cache": false,
Expand Down

0 comments on commit bd14fe9

Please sign in to comment.