Compare commits

..

1 Commits

Author SHA1 Message Date
44b1181d20 misc updates for system. 2026-02-27 16:57:39 -06:00
4 changed files with 12 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ enabled: true
# Runner type determines how the action is executed # Runner type determines how the action is executed
runner_type: nodejs runner_type: nodejs
# Runtime version constraint (semver range) - selects compatible Node.js version
runtime_version: ">=18"
# Entry point is the JavaScript file to execute # Entry point is the JavaScript file to execute
entry_point: hello.js entry_point: hello.js

View File

@@ -9,6 +9,9 @@ enabled: true
# Runner type # Runner type
runner_type: nodejs runner_type: nodejs
# Runtime version constraint (semver range)
runtime_version: ">=18"
# Entry point # Entry point
entry_point: http_example.js entry_point: http_example.js

View File

@@ -9,6 +9,9 @@ enabled: true
# Runner type # Runner type
runner_type: nodejs runner_type: nodejs
# Runtime version constraint (semver range)
runtime_version: ">=18"
# Entry point # Entry point
entry_point: read_counter.js entry_point: read_counter.js

View File

@@ -13,6 +13,9 @@ enabled: true
# Sensor runner type # Sensor runner type
runner_type: nodejs runner_type: nodejs
# Minimum Node.js version required (semver constraint)
runtime_version: ">=18"
# Entry point for sensor execution # Entry point for sensor execution
entry_point: counter_sensor.js entry_point: counter_sensor.js