remove node_modules from required_dirs
Build and Deploy to K3s / test (push) Successful in 17s
Build and Deploy to K3s / lint (push) Successful in 1m3s
Build and Deploy to K3s / build-and-push (push) Successful in 35s
Build and Deploy to K3s / deploy (push) Successful in 2m0s

This commit is contained in:
jasonwitty
2026-08-23 23:57:31 -07:00
parent e6d1e170fd
commit 0b05f4bb92
+1 -1
View File
@@ -5,7 +5,7 @@ fn main() {
let is_ci = std::env::var("CI").is_ok();
// Verify that required directories exist at build time
let required_dirs = vec!["static", "templates", "node_modules"];
let required_dirs = vec!["static", "templates"];
let mut missing_dirs = Vec::new();