Skip to content

Commit bad174f

Browse files
authored
fix(deploy): skip integrations directory (#423)
## Describe your changes ## Issue ticket number and link ## Checklist before requesting a review (skip if just adding/editing APIs & templates) - [ ] I added tests, otherwise the reason is: - [ ] External API requests have `retries` - [ ] Pagination is used where appropriate - [ ] The built in `nango.paginate` call is used instead of a `while (true)` loop - [ ] Third party requests are NOT parallelized (this can cause issues with rate limits) - [ ] If a sync requires metadata the `nango.yaml` has `auto_start: false` - [ ] If the sync is a `full` sync then `track_deletes: true` is set - [ ] I followed the best practices and guidelines from the [Writing Integration Scripts](/NangoHQ/integration-templates/blob/main/guides/WRITING_SCRIPTS.md) doc
1 parent 3c264c5 commit bad174f

File tree

6 files changed

+322
-405
lines changed

6 files changed

+322
-405
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ jobs:
7575
continue
7676
fi
7777
78+
if [ "$dir" = "integrations" ]; then
79+
continue
80+
fi
81+
7882
if [ ! -d "$dir/.nango" ]; then
7983
continue
8084
fi

integrations/package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integrations/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"test": "vitest"
1313
},
1414
"devDependencies": {
15-
"nango": "0.69.17",
16-
"zod": "4.0.5",
17-
"vitest": "4.0.15"
15+
"nango": "^0.69.18",
16+
"vitest": "4.0.15",
17+
"zod": "4.0.5"
1818
}
1919
}

0 commit comments

Comments
 (0)