js-waku/.github/workflows/ci.yml

264 lines
6.9 KiB
YAML
Raw Normal View History

name: CI
on:
push:
branches:
2022-05-02 06:32:56 +00:00
- "master"
- "staging"
- "trying"
pull_request:
workflow_dispatch:
inputs:
nim_wakunode_image:
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.19.0"
required: false
type: string
workflow_call:
inputs:
nim_wakunode_image:
required: false
type: string
caller:
required: false
type: string
env:
NODE_JS: "18"
RETRY_ATTEMPTS: 3
jobs:
2022-11-02 03:11:21 +00:00
check:
2022-08-19 13:26:31 +00:00
runs-on: ubuntu-latest
if: ${{ inputs.caller == null || inputs.caller != 'nwaku' }}
2022-08-19 13:26:31 +00:00
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
2022-08-19 13:26:31 +00:00
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
2022-08-19 13:26:31 +00:00
- run: npm run build
2022-11-01 08:48:44 +00:00
- run: npm run check
- run: npm run doc
2022-08-19 13:26:31 +00:00
proto:
runs-on: ubuntu-latest
if: ${{ inputs.caller == null || inputs.caller != 'nwaku' }}
2022-08-19 13:26:31 +00:00
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
2022-08-19 13:26:31 +00:00
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
- name: Generate protobuf code
2022-05-30 05:25:00 +00:00
run: |
npm run proto
npm run fix
- name: Check all protobuf code was committed
shell: bash
run: |
2022-01-04 22:05:07 +00:00
res=$(git status --short --ignore-submodules)
echo -n "'$res'" # For debug purposes
[ $(echo -n "$res"|wc -l) -eq 0 ]
2022-08-19 13:26:31 +00:00
browser:
runs-on: ubuntu-latest
if: ${{ inputs.caller == null || inputs.caller != 'nwaku' }}
2022-08-19 13:26:31 +00:00
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
2022-08-19 13:26:31 +00:00
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
- run: npm run build:esm
2022-08-19 13:26:31 +00:00
- run: npm run test:browser
2022-08-19 13:26:31 +00:00
node:
runs-on: ubuntu-latest
env:
WAKUNODE_IMAGE: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
2022-08-19 13:26:31 +00:00
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
2022-08-19 13:26:31 +00:00
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
- run: npm run build:esm
- uses: Wandalen/wretry.action@master
with:
attempt_limit: ${{ env.RETRY_ATTEMPTS }}
command: npm run test:node
with: |
DEBUG: ""
2021-03-26 01:38:04 +00:00
- name: Upload debug logs on failure
uses: actions/upload-artifact@v3
if: failure()
with:
name: debug.log
path: debug.log
- name: Upload nwaku logs on failure
uses: actions/upload-artifact@v3
2021-03-26 01:38:04 +00:00
if: failure()
with:
name: nwaku-logs
2022-11-17 01:42:37 +00:00
path: packages/tests/log/
2022-08-19 09:22:35 +00:00
node_optional:
runs-on: ubuntu-latest
env:
WAKUNODE_IMAGE: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
- run: npm run build:esm
- uses: Wandalen/wretry.action@master
with:
attempt_limit: ${{ env.RETRY_ATTEMPTS }}
command: npm run test:optional --workspace=@waku/tests
with: |
DEBUG: ""
node_with_go_waku_master:
2022-05-27 11:18:36 +00:00
runs-on: ubuntu-latest
if: ${{ inputs.caller == null || inputs.caller != 'nwaku' }}
2022-05-27 11:18:36 +00:00
env:
WAKUNODE_IMAGE: "statusteam/go-waku:latest"
2022-05-27 11:18:36 +00:00
WAKU_SERVICE_NODE_PARAMS: "--min-relay-peers-to-publish=0" # Can be removed once https://github.com/status-im/nwaku/issues/1004 is done
DEBUG: "waku*"
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
2022-05-27 11:18:36 +00:00
- name: Install NodeJS
uses: actions/setup-node@v3
with:
2022-09-05 11:02:01 +00:00
node-version: ${{ env.NODE_JS }}
2022-05-27 11:18:36 +00:00
- uses: ./.github/actions/npm
- run: npm run build:esm
- uses: Wandalen/wretry.action@master
with:
attempt_limit: ${{ env.RETRY_ATTEMPTS }}
command: npm run test:node
with: |
DEBUG: "waku:nwaku*,waku:test*"
2022-05-27 11:18:36 +00:00
- name: Upload debug logs on failure
uses: actions/upload-artifact@v3
if: failure()
with:
name: go-waku-debug.log
path: debug.log
2022-05-27 11:18:36 +00:00
- name: Upload logs on failure
uses: actions/upload-artifact@v3
2022-05-27 11:18:36 +00:00
if: failure()
with:
name: go-waku-logs
2022-11-17 01:42:37 +00:00
path: packages/tests/log/
node_with_nwaku_master:
runs-on: ubuntu-latest
if: ${{ inputs.caller == null || inputs.caller != 'nwaku' }}
env:
DEBUG: "waku*"
WAKUNODE_IMAGE: "statusteam/nim-waku:deploy-wakuv2-test"
steps:
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: ./.github/actions/npm
- run: npm run build:esm
- uses: Wandalen/wretry.action@master
with:
attempt_limit: ${{ env.RETRY_ATTEMPTS }}
command: npm run test:node
with: |
DEBUG: "waku:nwaku*,waku:test*"
- name: Upload debug logs on failure
uses: actions/upload-artifact@v3
if: failure()
with:
name: nwaku-master-debug.log
path: debug.log
- name: Upload logs on failure
uses: actions/upload-artifact@v3
if: failure()
with:
name: nwaku-master-logs
2022-11-17 01:42:37 +00:00
path: packages/tests/log/
maybe-release:
name: release
runs-on: ubuntu-latest
if: >
github.event_name == 'push' &&
github.ref == 'refs/heads/master' &&
(github.event.inputs.caller == null || github.event.inputs.caller != 'nwaku')
needs: [check, proto, browser, node]
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
monorepo-tags: true
token: ${{ secrets.CI_TOKEN }}
- uses: actions/checkout@v3
with:
repository: waku-org/js-waku
if: ${{ steps.release.outputs.releases_created }}
- uses: actions/setup-node@v3
if: ${{ steps.release.outputs.releases_created }}
with:
node-version: ${{ env.NODE_JS }}
registry-url: "https://registry.npmjs.org"
- run: npm install
if: ${{ steps.release.outputs.releases_created }}
- run: npm run build
if: ${{ steps.release.outputs.releases_created }}
- run: npm run publish
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_JS_WAKU_PUBLISH }}