-
Notifications
You must be signed in to change notification settings - Fork 0
Merge agentic-upgrade into main #2
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
base: main
Are you sure you want to change the base?
Changes from all commits
206e03a
2b9a4c6
70113d5
21b8f3d
23a62fc
7c67709
5f72f27
86ea7d5
6c75c5c
5c8502e
23759ee
40e1093
524a925
9805499
66479c4
d89bf38
f5fc589
3493b88
9268b9f
5539211
ed319b3
1d6d095
6e0237c
c5c2741
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 |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: CI Build and Test | ||
|
|
||
| on: | ||
| push: | ||
| branches: ['**'] | ||
| pull_request: | ||
| branches: ['**'] | ||
|
|
||
| jobs: | ||
| test-and-build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: oven-sh/setup-bun@v2 | ||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
| - name: Codegen | ||
| run: bun run generate:graphql | ||
| - name: Run the tests | ||
| run: bun run test | ||
| - name: Build | ||
| run: bun run build | ||
| env: | ||
| CI: false |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 22.12.0 |
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,6 +7,23 @@ Currently, two official plugins are available: | |||||||||||||||
| - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh | ||||||||||||||||
| - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh | ||||||||||||||||
|
|
||||||||||||||||
| ## Setup | ||||||||||||||||
|
|
||||||||||||||||
| This project requires **Node ≥ 22.12.0**. If you use `nvm`, run: | ||||||||||||||||
|
|
||||||||||||||||
| ```bash | ||||||||||||||||
| nvm install 22.12.0 | ||||||||||||||||
| nvm use 22.12.0 | ||||||||||||||||
| ``` | ||||||||||||||||
|
|
||||||||||||||||
| You can also use the provided npm script: | ||||||||||||||||
|
|
||||||||||||||||
| ```bash | ||||||||||||||||
| npm run setup | ||||||||||||||||
| ``` | ||||||||||||||||
|
|
||||||||||||||||
| which will execute the above commands (assuming `nvm` is available in your shell). | ||||||||||||||||
|
|
||||||||||||||||
|
Comment on lines
+19
to
+26
|
||||||||||||||||
| You can also use the provided npm script: | |
| ```bash | |
| npm run setup | |
| ``` | |
| which will execute the above commands (assuming `nvm` is available in your shell). |
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.
no-unused-disableis not a core ESLint rule, and there’s no plugin configured that provides it. ESLint will typically error on unknown rule names, which would breakbun run lint/CI. Remove this rule entry or replace it with the correct rule from an installed plugin (or rely on--report-unused-disable-directiveswhich is already passed on the CLI).