You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I have to open some app or long-lived process in my workflow as part of a bigger workflow but I want it to behave more like a local service that once something change it is restarted.
Ex on how I achieve that today:
- name: run fe apprun: cd web && yarn dev --watch & # This runs on backgroundrun_on_init: true
- name: run golang apprun:
- pkill mobile-payments-web || true
- make run-backend &change: '**/*.go'run_on_init: true# Maybe here goes a `service: true`
- name: run tests apprun: make testschange: '**/*.go'run_on_init: true
The text was updated successfully, but these errors were encountered:
Sometimes I have to open some app or long-lived process in my workflow as part of a bigger workflow but I want it to behave more like a local service that once something change it is restarted.
Ex on how I achieve that today:
The text was updated successfully, but these errors were encountered: