Skip to content

Commit c8a22ea

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/simple-examples/eslint-plugin-n-17.9.0
2 parents 78f831e + bf7a2b1 commit c8a22ea

File tree

19 files changed

+268
-5277
lines changed

19 files changed

+268
-5277
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,15 @@ jobs:
1111
with:
1212
cache: npm
1313
cache-dependency-path: simple-examples/package.json
14-
- name: Install dependencies
14+
- name: Simple – Install dependencies
1515
working-directory: simple-examples
1616
run: npm ci
17-
- name: Build
17+
- name: Simple – Build
1818
working-directory: simple-examples
1919
run: npm run build
20+
- name: Child Workflows – Install dependencies
21+
working-directory: child-workflows
22+
run: npm ci
23+
- name: Child Workflows – Build
24+
working-directory: child-workflows
25+
run: npm run build

.github/workflows/lint.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,15 @@ jobs:
1111
with:
1212
cache: npm
1313
cache-dependency-path: simple-examples/package.json
14-
- name: Install dependencies
14+
- name: Simple – Install dependencies
1515
working-directory: simple-examples
1616
run: npm ci
17-
- name: Build
17+
- name: Simple – Build
1818
working-directory: simple-examples
1919
run: npm run lint:check
20+
- name: Child Workflows – Install dependencies
21+
working-directory: child-workflows
22+
run: npm ci
23+
- name: Child Workflows – Build
24+
working-directory: child-workflows
25+
run: npm run lint:check
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
],
1414
"ignorePatterns": ["dist"],
1515
"parser": "@typescript-eslint/parser",
16+
"parserOptions": {
17+
"project": "./tsconfig.json"
18+
},
1619
"plugins": ["import", "unused-imports", "prettier"],
1720
"rules": {
1821
"@typescript-eslint/no-shadow": "off",
File renamed without changes.
Lines changed: 144 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@
5858
"typescript": "^5.4.3"
5959
},
6060
"dependencies": {
61-
"@hatchet-dev/typescript-sdk": "^0.2.0",
61+
"@hatchet-dev/typescript-sdk": "^0.7.4",
6262
"axios": "^1.6.8",
63+
"openai": "^4.51.0",
6364
"vectra": "^0.6.0"
6465
}
6566
}

0 commit comments

Comments
 (0)