From ad77f8cba5580e8c53f84ec2601891b5a618edb1 Mon Sep 17 00:00:00 2001 From: weboko Date: Fri, 6 Jan 2023 01:06:29 +0100 Subject: [PATCH] add noise example to the stage --- .github/workflows/ci.yml | 3 ++- ci/Jenkinsfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04782cb..39c3cce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,8 @@ jobs: relay-angular-chat, relay-reactjs-chat, store-reactjs-chat, - web-chat + web-chat, + noise-js ] runs-on: ubuntu-latest steps: diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index f280d9f..c620939 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -39,6 +39,7 @@ pipeline { stage('relay-reactjs-chat') { steps { script { buildExample() } } } stage('store-reactjs-chat') { steps { script { buildExample() } } } stage('web-chat') { steps { script { buildExample() } } } + stage('noise-js') { steps { script { buildExample() } } } } }