-
Notifications
You must be signed in to change notification settings - Fork 237
ci(library-ci): add build: false to unit, functional, and lint jobs #3289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -221,8 +221,6 @@ jobs: | |
| - uses: actions/checkout@v6 | ||
| - name: Setup environment | ||
| uses: ./.github/actions/setup | ||
| with: | ||
| build: true | ||
| - run: pnpm test:functional | ||
|
Comment on lines
222
to
224
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The functional job still runs a full Useful? React with 👍 / 👎. |
||
|
|
||
| lint: | ||
|
|
@@ -232,6 +230,8 @@ jobs: | |
| - uses: actions/checkout@v6 | ||
| - name: Setup environment | ||
| uses: ./.github/actions/setup | ||
| with: | ||
| build: false | ||
| - name: Lint all packages | ||
| run: pnpm lint | ||
| - name: Lint playground files | ||
|
|
||
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.
functionaljob still builds after this changeThe PR removes the explicit
build: truefrom thefunctionaljob, but the setup action'sbuildinput defaults to"true"(see.github/actions/setup/action.yamlline 16). Removingbuild: truewithout replacing it withbuild: falseleaves the job's behaviour unchanged —pnpm buildstill runs.To actually skip the build,
build: falseneeds to be specified explicitly:Prompt To Fix With AI