The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Smoke Test - Multi-Step Pipeline",
"nodes": [
{
"parameters": {},
"id": "start",
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
100,
300
]
},
{
"parameters": {
"assignments": [
{
"name": "productData",
"value": "{\"name\":\"Widget\",\"price\":25.50,\"quantity\":4,\"category\":\"electronics\"}"
}
]
},
"id": "set1",
"name": "Create Product Data",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
300,
300
]
},
{
"parameters": {
"operation": "parse",
"jsonPath": "$json.productData"
},
"id": "json1",
"name": "Parse Product JSON",
"type": "n8n-nodes-base.json",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"assignments": [
{
"name": "total",
"value": "{{ $json.price * $json.quantity }}"
},
{
"name": "product",
"value": "{{ $json.name }}"
},
{
"name": "category",
"value": "{{ $json.category }}"
}
]
},
"id": "set2",
"name": "Calculate Total",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
700,
300
]
},
{
"parameters": {
"conditions": [
{
"leftValue": "total",
"operator": "greaterThan",
"rightValue": 50
}
]
},
"id": "filter1",
"name": "Filter High Value Orders",
"type": "n8n-nodes-base.filter",
"typeVersion": 1,
"position": [
900,
300
]
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Create Product Data",
"type": "main",
"index": 0
}
]
]
},
"Create Product Data": {
"main": [
[
{
"node": "Parse Product JSON",
"type": "main",
"index": 0
}
]
]
},
"Parse Product JSON": {
"main": [
[
{
"node": "Calculate Total",
"type": "main",
"index": 0
}
]
]
},
"Calculate Total": {
"main": [
[
{
"node": "Filter High Value Orders",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Smoke Test - Multi-Step Pipeline. Uses start, json. Manual trigger; 5 nodes.
Source: https://github.com/neul-labs/m9m/blob/main/test-workflows/smoke/multi-step-pipeline.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Smoke Test - JSON Node. Uses start, json. Manual trigger; 3 nodes.