From bcd65a1935889af67b905e19ca753748c487c6a0 Mon Sep 17 00:00:00 2001 From: Florin Barbu Date: Tue, 26 Sep 2023 00:57:29 +0300 Subject: [PATCH] chore: add comment warnings to node ci (#1609) Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com> --- .github/workflows/test-node.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index 68be2f49c7..67071881c9 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -1,7 +1,12 @@ +# WARNING: This workflow is used by upstream workflows (jswaku, nwaku, gowaku) via workflow_call. +# DO NOT modify the name, inputs, or other parts of this workflow that might break upstream CI. + name: Run Test on: workflow_call: + # IMPORTANT: Do not change the name or properties of these inputs. + # If you add new required inputs make sure that they have default value or you make the change upstream as well inputs: nim_wakunode_image: required: true @@ -16,6 +21,7 @@ on: env: NODE_JS: "18" + # Ensure test type conditions remain consistent. WAKU_SERVICE_NODE_PARAMS: ${{ (inputs.test_type == 'go-waku-master') && '--min-relay-peers-to-publish=0' || '' }} DEBUG: ${{ inputs.debug }}