You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action checks out your PR branch and your main branch and compares the custom nodes defined in `NODE_CLASS_MAPPINGS` for backwards incompatible changes.
8
+
9
+
This helps you develop custom nodes that don't break existing workflows.
10
+
11
+
## Usage
12
+
13
+
Just add this to your custom node repo: `.github/workflows/validate.yml`
14
+
15
+
```
16
+
name: Validate backwards compatibility
17
+
18
+
on:
19
+
pull_request:
20
+
branches:
21
+
- master
22
+
- main
23
+
24
+
jobs:
25
+
validate:
26
+
runs-on: ubuntu-latest
27
+
steps:
28
+
- uses: comfy-org/node-diff@main
29
+
```
30
+
31
+
If you use a branch other than `main` as your base branch, add that here:
0 commit comments