10 Commits

Author SHA1 Message Date
2ada8ff474 test(utils): remove unnecessary timing test
All checks were successful
🚀 Release / release (pull_request) Successful in 4m30s
2026-02-03 22:24:45 +01:00
ae4e8fa2cf fix(ui): correctly pass BASE_PATH to ui 2026-02-03 22:24:31 +01:00
c5c9f84222 chore(ui): run formatting
Some checks failed
🚀 Release / release (pull_request) Failing after 3m24s
2026-02-03 22:18:57 +01:00
0fd27b2bf6 feat(ui): add a bunch of tests
Some checks failed
🚀 Release / release (pull_request) Failing after 1m39s
2026-02-03 22:17:00 +01:00
d01038f927 fix(utils): make flattree types work
Some checks failed
🚀 Release / release (pull_request) Failing after 3m7s
2026-02-03 21:30:35 +01:00
f88b9052b1 fix(utils): make tests work
Some checks failed
🚀 Release / release (pull_request) Failing after 2m3s
2026-02-03 21:17:34 +01:00
aaec37a9d8 chore(app): format files
Some checks failed
🚀 Release / release (pull_request) Failing after 3m20s
2026-02-03 21:07:10 +01:00
c3764872e8 fix(ci): run actions in prs
Some checks failed
🚀 Release / release (pull_request) Failing after 4m56s
2026-02-03 21:01:33 +01:00
731a9683e7 feat: add initial e2e tests 2026-02-03 20:57:29 +01:00
91492c0696 fix(ci): only fmt CHANGELOG 2026-02-03 16:36:27 +01:00
8 changed files with 9 additions and 41 deletions

View File

@@ -61,24 +61,3 @@ jobs:
body_path: CHANGELOG.md body_path: CHANGELOG.md
draft: false draft: false
prerelease: false prerelease: false
- name: 🔑 Configure rclone
if: github.ref_type == 'tag'
run: |
echo "$SSH_PRIVATE_KEY" > /tmp/id_rsa
chmod 600 /tmp/id_rsa
mkdir -p ~/.config/rclone
echo -e "[sftp-remote]\ntype = sftp\nhost = ${SSH_HOST}\nuser = ${SSH_USER}\nport = ${SSH_PORT}\nkey_file = /tmp/id_rsa" > ~/.config/rclone/rclone.conf
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SSH_HOST: ${{ vars.SSH_HOST }}
SSH_PORT: ${{ vars.SSH_PORT }}
SSH_USER: ${{ vars.SSH_USER }}
- name: 🚀 Deploy Changed Files via rclone
if: github.ref_type == 'tag'
run: |
echo "Uploading the rest"
rclone sync --update -v --progress --exclude _astro/** --stats 2s --stats-one-line ./app/build/ sftp-remote:${REMOTE_DIR} --transfers 4
env:
REMOTE_DIR: ${{ vars.REMOTE_DIR }}

View File

@@ -1,17 +1,3 @@
## v0.0.2 (2026-02-03)
fix(ci): actually deploy on tags
---
## v0.0.2 (2026-02-03)
fix(app): correctly handle false value in settings
This caused a bug where random seed could not be false.
---
## v0.0.1 (2026-02-03) ## v0.0.1 (2026-02-03)
chore: format chore: format

View File

@@ -1,7 +1,7 @@
{ {
"name": "@nodarium/app", "name": "@nodarium/app",
"private": true, "private": true,
"version": "0.0.2", "version": "0.0.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@@ -98,7 +98,7 @@
&& typeof internalValue === 'number' && typeof internalValue === 'number'
) { ) {
value[key] = node?.options?.[internalValue]; value[key] = node?.options?.[internalValue];
} else if (internalValue !== undefined) { } else if (internalValue) {
value[key] = internalValue; value[key] = internalValue;
} }
}); });
@@ -124,6 +124,7 @@
{#if key && isNodeInput(type?.[key])} {#if key && isNodeInput(type?.[key])}
{@const inputType = type[key]} {@const inputType = type[key]}
<!-- Leaf input -->
<div class="input input-{inputType.type}" class:first-level={depth === 1}> <div class="input input-{inputType.type}" class:first-level={depth === 1}>
{#if inputType.type === 'button'} {#if inputType.type === 'button'}
<button onclick={handleClick}> <button onclick={handleClick}>
@@ -137,6 +138,7 @@
{/if} {/if}
</div> </div>
{:else if depth === 0} {:else if depth === 0}
<!-- Root: iterate over top-level keys -->
{#each Object.keys(type ?? {}).filter((k) => k !== 'title') as childKey (childKey)} {#each Object.keys(type ?? {}).filter((k) => k !== 'title') as childKey (childKey)}
<NestedSettings <NestedSettings
id={`${id}.${childKey}`} id={`${id}.${childKey}`}
@@ -148,6 +150,7 @@
{/each} {/each}
<hr /> <hr />
{:else if key && type?.[key]} {:else if key && type?.[key]}
<!-- Group -->
{#if depth > 0} {#if depth > 0}
<hr /> <hr />
{/if} {/if}

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.0.2", "version": "0.0.1",
"scripts": { "scripts": {
"postinstall": "pnpm run -r --filter 'ui' build", "postinstall": "pnpm run -r --filter 'ui' build",
"build": "pnpm build:nodes && pnpm build:app", "build": "pnpm build:nodes && pnpm build:app",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@nodarium/types", "name": "@nodarium/types",
"version": "0.0.2", "version": "0.0.1",
"description": "", "description": "",
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@nodarium/ui", "name": "@nodarium/ui",
"version": "0.0.2", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build && npm run package", "build": "vite build && npm run package",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@nodarium/utils", "name": "@nodarium/utils",
"version": "0.0.2", "version": "0.0.1",
"description": "", "description": "",
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {