aboutsummaryrefslogtreecommitdiffstats
path: root/.agent/workflows
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 15:44:02 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 15:44:02 -0800
commit701e0e8e919d2929ecc98b555e468bd29bf606cf (patch)
treee78856b8ffc83406499b34bb7fdf0892dd2ce6b4 /.agent/workflows
parent17fd19c8f822ff84b1855d7729a3030ebf1f68ae (diff)
downloadneko-701e0e8e919d2929ecc98b555e468bd29bf606cf.tar.gz
neko-701e0e8e919d2929ecc98b555e468bd29bf606cf.tar.bz2
neko-701e0e8e919d2929ecc98b555e468bd29bf606cf.zip
Cleanup root directory by moving scripts to scripts/ and fix CSRF cookie policy for dev env
Diffstat (limited to '.agent/workflows')
-rw-r--r--.agent/workflows/deploy-check.md4
-rw-r--r--.agent/workflows/test-safe.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/.agent/workflows/deploy-check.md b/.agent/workflows/deploy-check.md
index 51ab1ae..c6a6907 100644
--- a/.agent/workflows/deploy-check.md
+++ b/.agent/workflows/deploy-check.md
@@ -6,7 +6,7 @@ Use this workflow to run tests with extra precautions, especially Playwright/E2E
1. **Pre-flight checks:**
```bash
# Ensure clean environment
- ./clean_test_env.sh
+ scripts/clean_test_env.sh
# Check for stray processes
ps aux | grep -E 'neko|playwright|chrome'
```
@@ -23,7 +23,7 @@ Use this workflow to run tests with extra precautions, especially Playwright/E2E
4. **E2E tests (Safe Wrapper):**
Use the safe wrapper script which handles timeouts and automatic cleanup.
```bash
- ./run_e2e_safe.sh
+ scripts/run_e2e_safe.sh
```
If E2E tests fail or hang:
diff --git a/.agent/workflows/test-safe.md b/.agent/workflows/test-safe.md
index bba4adb..02db43a 100644
--- a/.agent/workflows/test-safe.md
+++ b/.agent/workflows/test-safe.md
@@ -7,7 +7,7 @@ Use this workflow to run tests with extra precautions, especially Playwright/E2E
1. **Pre-flight checks:**
```bash
# Ensure clean environment
- ./clean_test_env.sh
+ scripts/clean_test_env.sh
# Check for stray processes
ps aux | grep -E 'neko|playwright|chrome'
```
@@ -27,7 +27,7 @@ Use this workflow to run tests with extra precautions, especially Playwright/E2E
4. **E2E tests (Safe Wrapper):**
Use the safe wrapper script which handles timeouts and automatic cleanup.
```bash
- ./run_e2e_safe.sh
+ scripts/run_e2e_safe.sh
```
If E2E tests fail or hang: