Nx
Enterprise
Nx
Overview
Sign in / Sign up
Open main menu
Nx
GitHub
Select a tab
Overview
Runs
Analytics
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Filter
Filter exact branch match
Exact
Select status
Failed
master
7f4a8eaf fix(repo): remove duplicate permissions block in publish workflow (#32868) ## Current Behavior The publish workflow has a duplicate `permissions` block incorrectly nested under a GitHub script action step, which causes a syntax error in the GitHub Actions workflow. ## Expected Behavior The workflow should run without syntax errors. The `permissions` block should only be defined at the job level, not within individual steps. ## Related Issue(s) This fixes a GitHub Actions workflow syntax issue where permissions were incorrectly nested under a step action. The `pull-requests: write` permission is already correctly defined at the job level (lines 510-513), so the duplicated permissions block under the step was unnecessary and causing errors. 🤖 Generated with [Claude Code](https://claude.ai/code)
13 hours ago
by jaysoo
Failed
master
7f4a8eaf fix(repo): remove duplicate permissions block in publish workflow (#32868) ## Current Behavior The publish workflow has a duplicate `permissions` block incorrectly nested under a GitHub script action step, which causes a syntax error in the GitHub Actions workflow. ## Expected Behavior The workflow should run without syntax errors. The `permissions` block should only be defined at the job level, not within individual steps. ## Related Issue(s) This fixes a GitHub Actions workflow syntax issue where permissions were incorrectly nested under a step action. The `pull-requests: write` permission is already correctly defined at the job level (lines 510-513), so the duplicated permissions block under the step was unnecessary and causing errors. 🤖 Generated with [Claude Code](https://claude.ai/code)
2 days ago
by jaysoo
Succeeded
master
e2a79862 chore(repo): restore PR release functionality (#32839) This PR brings back PR releases. --------- Co-authored-by: Jason Jean <jasonjean1993@gmail.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
2 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
2 days ago
by jaysoo
Failed
master
5ea2e47a fix(core): display prettier valid errors (#32771) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior When running `nx format:check`, if there is an error, it is considered as files not formatted correctly But if Prettier is throwing a real error, it is not diplayed. We just see an empty result without information For example: Format check failing with empty result ``` nx format:check ``` But when running the command, we can see the error: ``` node "/node_modules/prettier/bin/prettier.cjs" --list-different "packages/lib/.spec.swcrc" packages/lib/.spec.swcrc [error] No parser could be inferred for file "/packages/lib/.spec.swcrc". ``` ## Expected Behavior I should see the prettier error to understand why it is failing ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
32843
aa704ac5 chore(misc): remove svgr e2e test since we do not support it
3 days ago
by jaysoo
Succeeded
32839
29eebb8a chore(repo): restore PR release functionality with security safeguards PR releases were disabled due to security concerns. The workflow_dispatch trigger and associated PR release logic were removed from the publish workflow. PR releases are now re-enabled with existing security safeguards: - All GitHub Actions remain pinned to SHA (not tags) - Repository owner checks are in place - NPM publish requires manual release confirmation - PR branch validation ensures nx-release.ts hasn't changed Restores functionality removed in #32536 while keeping security improvements - Restored workflow_dispatch trigger with PR input parameter - Added back PR-specific outputs (success_comment, ref, repo) - Restored PR branch checkout and validation steps - Added PR comment creation for successful releases - Updated publish-resolve-data.js with PR release logic
3 days ago
by jaysoo
Succeeded
master
b6d5f386 fix(gradle): skip targets on Netlify since the Java version is too old (#32852) Building on Netlify fails. ``` 3:03:48 PM: FAILURE: Build failed with an exception. 3:03:48 PM: * What went wrong: 3:03:48 PM: A problem occurred configuring root project 'nx'. 3:03:48 PM: > Could not resolve all artifacts for configuration 'classpath'. 3:03:48 PM: > Could not resolve dev.nx.gradle:project-graph:0.1.7. 3:03:48 PM: Required by: 3:03:48 PM: root project : > dev.nx.gradle.project-graph:dev.nx.gradle.project-graph.gradle.plugin:0.1.7 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: > Could not resolve com.ncorti.ktfmt.gradle:plugin:0.24.0. 3:03:48 PM: Required by: 3:03:48 PM: root project : > com.ncorti.ktfmt.gradle:com.ncorti.ktfmt.gradle.gradle.plugin:0.24.0 3:03:48 PM: > Dependency requires at least JVM runtime version 17. This build uses a Java 8 JVM. 3:03:48 PM: * Try: 3:03:48 PM: > Run this build using a Java 17 or newer JVM. 3:03:48 PM: > Run with --stacktrace option to get the stack trace. 3:03:48 PM: > Run with --debug option to get more log output. 3:03:48 PM: > Run with --scan to get full insights. 3:03:48 PM: > Get more help at https://help.gradle.org. 3:03:48 PM: BUILD FAILED in 30s ``` ## Current Behavior Gradle plugin needs Java 17, but Netlify uses 8. ## Expected Behavior Skip targets on Netlify just like on Vercel. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #NXC-3175
3 days ago
by jaysoo
Succeeded
32852
f25c5a65 fix(gradle): skip targets on Netlify since the Java version is too old
3 days ago
by jaysoo
Succeeded
32843
a263c044 chore(misc): remove svgr e2e test since we do not support it
3 days ago
by jaysoo
Failed
32843
5c3f196e chore(misc): remove svgr e2e test since we do not support it
3 days ago
by jaysoo
Failed
32843
37f2d134 chore(misc): remove svgr e2e test since we do not support it
3 days ago
by jaysoo
Canceled
32843
9ac00dd0 chore(react): reorganize SVGR migration tests with describe blocks Grouped withReact and NxReactWebpackPlugin tests into separate describe blocks for better test organization and readability Related Issue(s) Fixes NXC-3106
3 days ago
by jaysoo
Failed
master
c0ad4843 docs(nx-dev): small docs cleanup (#32822) - add prettier overrides for mdoc files to be treaded as markdown (along with running format) - update links to nx-commands refs to use correct header links - fix link on quickstart page to point to CI feature overview
4 days ago
by jaysoo
Succeeded
master
bd1b689b docs(misc): minor styling fixes (#32840) This PR fixes a few styling issues ## Anchor links colors being consistent inside asides: https://github.com/user-attachments/assets/13ba7892-50ee-4429-b9f5-8587f65869de ## Mobile login border color on light theme (make it lighter and same as other border colors): <img width="325" height="279" alt="Screenshot 2025-09-24 at 10 34 56 AM" src="https://github.com/user-attachments/assets/b2ca3246-5a11-491c-8240-68a0e4430c81" /> ## Decrease font size for tabs: <img width="676" height="319" alt="Screenshot 2025-09-24 at 10 38 38 AM" src="https://github.com/user-attachments/assets/5a7dc828-f049-4b25-9b28-144969fd810f" /> ## Remove extra margin-bottom for code lines in asides: Before: <img width="743" height="387" alt="image" src="https://github.com/user-attachments/assets/55312f0a-acc5-48e2-bcb2-3370d00ed05f" /> After: <img width="828" height="467" alt="image" src="https://github.com/user-attachments/assets/537f688a-61cf-444a-a512-84c611b80c43" /> Closes #DOC-227 #DOC-225
4 days ago
by jaysoo
Previous page
Previous
Next
Next page