add updates to CI

This commit is contained in:
danisharora099 2023-02-28 13:20:08 -07:00
parent 408f1f9d3f
commit 7fa0f98fa4
No known key found for this signature in database
GPG Key ID: FBD2BF500037F135
2 changed files with 4 additions and 2 deletions

View File

@ -18,8 +18,9 @@ jobs:
relay-reactjs-chat,
store-reactjs-chat,
web-chat,
web-chat-dev,
noise-js,
noise-rtc
noise-rtc,
]
runs-on: ubuntu-latest
steps:
@ -44,7 +45,7 @@ jobs:
- name: test
run: npm run test --if-present
working-directory: "examples/${{ matrix.example }}"
release_create_waku:
runs-on: ubuntu-latest
needs: [examples_build_and_test]

1
ci/Jenkinsfile vendored
View File

@ -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('web-chat-dev') { steps { script { buildExample() } } }
stage('noise-js') { steps { script { buildExample() } } }
stage('noise-rtc') { steps { script { buildExample() } } }
}