-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: improve filters thx yarn 4.0.0-rc.42 (#3588)
* ci: improve filters thx yarn 4.0.0-rc.42 * ci: improve filters thx yarn 4.0.0-rc.42 * ci: improve filters thx yarn 4.0.0-rc.42 * ci: improve filters thx yarn 4.0.0-rc.42
- Loading branch information
1 parent
37c21a9
commit 322d71a
Showing
13 changed files
with
40 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
branches: [dev, main] | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ name: ReleaseOrVersionPR | |
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
branches: [main] | ||
|
||
jobs: | ||
release: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
changesetBaseRefs: | ||
- main | ||
- origin/main | ||
- upstream/main | ||
|
||
changesetIgnorePatterns: | ||
- '**/*.test.{js,ts}' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,8 @@ | |
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example", | ||
"repository": "belgattitude/nextjs-monorepo-example", | ||
"scripts": { | ||
"apps:build": "yarn workspaces foreach -ptv --include '*-app' run build", | ||
"apps:clean": "yarn workspaces foreach -ptv --include '*-app' run clean", | ||
"apps:build": "yarn workspaces foreach -ptv --include 'apps/*' run build", | ||
"apps:clean": "yarn workspaces foreach -ptv --include 'apps/*' run clean", | ||
"check:install": "yarn dlx @yarnpkg/[email protected] .", | ||
"check:git-pristine": "./scripts/check-git-pristine.sh", | ||
"check:renovate:config": "docker run -v renovate.json5:/usr/src/app/renovate.json5 -it renovate/renovate renovate-config-validator", | ||
|
@@ -54,19 +54,19 @@ | |
"g:lint-staged-files": "lint-staged --allow-empty", | ||
"g:lint-styles": "yarn workspaces foreach -ptv run lint-styles --color", | ||
"g:release": "yarn g:build && changeset publish", | ||
"g:share-static-hardlink": "yarn workspaces foreach -pv --include '*-app' run share-static-hardlink", | ||
"g:share-static-symlink": "yarn workspaces foreach -pv --include '*-app' run share-static-symlink", | ||
"g:share-static-hardlink": "yarn workspaces foreach -pv --include 'apps/*' run share-static-hardlink", | ||
"g:share-static-symlink": "yarn workspaces foreach -pv --include 'apps/*' run share-static-symlink", | ||
"g:test-e2e": "yarn workspaces foreach -tv run test-e2e", | ||
"g:test-unit": "yarn workspaces foreach -ptv run test-unit", | ||
"g:test-unit-jest": "yarn workspaces foreach -ptv run test-unit-jest", | ||
"g:typecheck": "yarn workspaces foreach -ptv run typecheck", | ||
"install:playwright": "playwright install", | ||
"nuke:node_modules": "npx rimraf@3.0.1 '**/node_modules'", | ||
"packages:build": "yarn workspaces foreach -ptv --include '@your-org/*' run build", | ||
"packages:clean": "yarn workspaces foreach -ptv --include '@your-org/*' run clean", | ||
"packages:lint": "yarn workspaces foreach -ptv --include '@your-org/*' run lint", | ||
"packages:test:unit": "yarn workspaces foreach -ptv --include '@your-org/*' run test-unit", | ||
"packages:typecheck": "yarn workspaces foreach -ptv --include '@your-org/*' run typecheck", | ||
"nuke:node_modules": "rimraf --glob '**/node_modules'", | ||
"packages:build": "yarn workspaces foreach -ptv --include 'packages/*' run build", | ||
"packages:clean": "yarn workspaces foreach -ptv --include 'packages/*' run clean", | ||
"packages:lint": "yarn workspaces foreach -ptv --include 'packages/*' run lint", | ||
"packages:test:unit": "yarn workspaces foreach -ptv --include 'packages/*' run test-unit", | ||
"packages:typecheck": "yarn workspaces foreach -ptv --include 'packages/*' run typecheck", | ||
"postinstall": "is-ci || yarn husky install" | ||
}, | ||
"dependencies": { | ||
|
322d71a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
monorepo-nextjs-app – ./apps/nextjs-app
monorepo-nextjs-app-belgattitude.vercel.app
monorepo-nextjs-app.vercel.app
monorepo-nextjs-app-git-main-belgattitude.vercel.app
322d71a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
monorepo-vite-app – ./apps/vite-app
monorepo-vite-app-belgattitude.vercel.app
monorepo-vite-app-git-main-belgattitude.vercel.app
monorepo-vite-app.vercel.app