mirror of https://github.com/status-im/js-waku.git
move node to action folder
This commit is contained in:
parent
ba49fa1f7d
commit
8eac299654
|
@ -9,12 +9,16 @@ on:
|
|||
test_type:
|
||||
required: true
|
||||
type: string
|
||||
debug:
|
||||
required: false
|
||||
type: string
|
||||
default: ''
|
||||
|
||||
env:
|
||||
NODE_JS: "18"
|
||||
RETRY_ATTEMPTS: 3
|
||||
WAKU_SERVICE_NODE_PARAMS: ${{ (inputs.test_type == 'go-waku-master') && '--min-relay-peers-to-publish=0' || '' }}
|
||||
DEBUG: ${{ (inputs.test_type == 'go-waku-master' || inputs.test_type == 'nwaku-master') && 'waku*' || '' }}
|
||||
DEBUG: ${{ inputs.test_type }}
|
||||
|
||||
jobs:
|
||||
node:
|
|
@ -69,28 +69,30 @@ jobs:
|
|||
- run: npm run test:browser
|
||||
|
||||
node:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
uses: ./.github/actions/node/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
||||
test_type: node
|
||||
|
||||
node_optional:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
uses: ./.github/actions/node/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
||||
test_type: node-optional
|
||||
|
||||
node_with_go_waku_master:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
uses: ./.github/actions/node/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: statusteam/go-waku:latest
|
||||
test_type: go-waku-master
|
||||
debug: waku*
|
||||
|
||||
node_with_nwaku_master:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
uses: ./.github/actions/node/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: statusteam/nim-waku:deploy-wakuv2-test
|
||||
test_type: nwaku-master
|
||||
debug: waku*
|
||||
|
||||
maybe-release:
|
||||
name: release
|
||||
|
|
Loading…
Reference in New Issue