Skip to content

Expedition

An Esquie expedition is a collection of one or more steps that define a workflow to be executed. It is usually defined in YAML, but it can also be written in TypeScript for more advanced use cases.

yaml
# These properties are displayed in User Interfaces
_: Expedition
description: |
  For those who come after!

# The form defines the inputs that will be requested to the user
form:
  expedition_number:
    type: number
    default: 33
    required: true

# The steps define the actions to be taken in this expedition
steps:
  - _: Say hi
    log: Bonjour, mes amis de l'expédition ${expedition_number} !

Released under the MIT License.