2021-03-15 03:42:36 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-05-02 06:32:56 +00:00
|
|
|
- "master"
|
|
|
|
- "staging"
|
|
|
|
- "trying"
|
2021-03-15 03:42:36 +00:00
|
|
|
pull_request:
|
2023-08-24 11:03:44 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
nim_wakunode_image:
|
2023-10-03 10:41:41 +00:00
|
|
|
description: "Docker hub image name taken from https://hub.docker.com/r/wakuorg/nwaku/tags. Format: wakuorg/nwaku:v0.20.0"
|
2023-08-24 11:03:44 +00:00
|
|
|
required: false
|
|
|
|
type: string
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2022-08-19 08:28:57 +00:00
|
|
|
env:
|
2024-08-23 10:27:20 +00:00
|
|
|
NODE_JS: "20"
|
2022-08-19 08:28:57 +00:00
|
|
|
|
2021-03-15 03:42:36 +00:00
|
|
|
jobs:
|
2022-11-02 03:11:21 +00:00
|
|
|
check:
|
2022-08-19 13:26:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-08 08:38:31 +00:00
|
|
|
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 }}
|
2023-03-02 23:31:34 +00:00
|
|
|
- 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
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
proto:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-08 08:38:31 +00:00
|
|
|
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 }}
|
2023-03-02 23:31:34 +00:00
|
|
|
- uses: ./.github/actions/npm
|
2021-04-20 00:02:47 +00:00
|
|
|
- name: Generate protobuf code
|
2022-05-30 05:25:00 +00:00
|
|
|
run: |
|
|
|
|
npm run proto
|
|
|
|
npm run fix
|
2021-04-20 00:02:47 +00:00
|
|
|
- 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 ]
|
2021-04-20 00:02:47 +00:00
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
browser:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-08 08:38:31 +00:00
|
|
|
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 }}
|
2023-03-02 23:31:34 +00:00
|
|
|
- uses: ./.github/actions/npm
|
2023-09-22 15:48:07 +00:00
|
|
|
- run: npx playwright install --with-deps
|
2023-01-30 09:30:31 +00:00
|
|
|
- run: npm run build:esm
|
2022-08-19 13:26:31 +00:00
|
|
|
- run: npm run test:browser
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2024-05-02 02:58:28 +00:00
|
|
|
build_rln_tree:
|
|
|
|
if: false # This condition disables the job
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: waku-org/js-waku
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- name: Check for existing RLN tree artifact
|
|
|
|
id: check-artifact
|
|
|
|
uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const artifact = await github.rest.actions.listWorkflowRunArtifacts({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
run_id: context.runId
|
|
|
|
});
|
|
|
|
console.log(artifact);
|
|
|
|
const foundArtifact = artifact.data.artifacts.find(art => art.name === 'rln_tree.tar.gz');
|
|
|
|
if (foundArtifact) {
|
|
|
|
core.setOutput('artifact_id', foundArtifact.id);
|
|
|
|
core.setOutput('artifact_found', 'true');
|
|
|
|
} else {
|
|
|
|
core.setOutput('artifact_found', 'false');
|
|
|
|
}
|
|
|
|
- name: Download RLN tree artifact
|
|
|
|
if: steps.check-artifact.outputs.artifact_found == 'true'
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: rln_tree.tar.gz
|
|
|
|
path: /tmp
|
|
|
|
- uses: ./.github/actions/npm
|
|
|
|
- name: Sync rln tree and save artifact
|
|
|
|
run: |
|
|
|
|
mkdir -p /tmp/rln_tree.db
|
|
|
|
npm run build:esm
|
|
|
|
npm run sync-rln-tree
|
|
|
|
tar -czf rln_tree.tar.gz -C /tmp/rln_tree.db .
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: rln_tree.tar.gz
|
|
|
|
path: rln_tree.tar.gz
|
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
node:
|
2023-09-13 08:12:01 +00:00
|
|
|
uses: ./.github/workflows/test-node.yml
|
2023-10-23 14:53:56 +00:00
|
|
|
secrets: inherit
|
2023-09-12 12:28:46 +00:00
|
|
|
with:
|
2024-08-01 09:03:42 +00:00
|
|
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.31.0' }}
|
2023-09-12 14:33:34 +00:00
|
|
|
test_type: node
|
2023-10-23 14:53:56 +00:00
|
|
|
allure_reports: true
|
2022-08-19 09:22:35 +00:00
|
|
|
|
2023-08-07 08:27:16 +00:00
|
|
|
node_optional:
|
2023-09-13 08:12:01 +00:00
|
|
|
uses: ./.github/workflows/test-node.yml
|
2023-09-12 14:33:34 +00:00
|
|
|
with:
|
2024-08-01 09:03:42 +00:00
|
|
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.31.0' }}
|
2023-09-12 14:33:34 +00:00
|
|
|
test_type: node-optional
|
2023-08-07 08:27:16 +00:00
|
|
|
|
2022-11-15 04:08:39 +00:00
|
|
|
node_with_nwaku_master:
|
2023-09-13 08:12:01 +00:00
|
|
|
uses: ./.github/workflows/test-node.yml
|
2023-09-12 14:33:34 +00:00
|
|
|
with:
|
2024-01-18 15:52:51 +00:00
|
|
|
nim_wakunode_image: harbor.status.im/wakuorg/nwaku:latest
|
2023-09-12 14:59:31 +00:00
|
|
|
test_type: nwaku-master
|
2023-02-09 22:13:51 +00:00
|
|
|
|
|
|
|
maybe-release:
|
|
|
|
name: release
|
|
|
|
runs-on: ubuntu-latest
|
2023-09-12 12:28:46 +00:00
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
2023-02-09 22:13:51 +00:00
|
|
|
needs: [check, proto, browser, node]
|
|
|
|
steps:
|
|
|
|
- uses: google-github-actions/release-please-action@v3
|
|
|
|
id: release
|
|
|
|
with:
|
|
|
|
command: manifest
|
|
|
|
monorepo-tags: true
|
2023-03-10 11:46:52 +00:00
|
|
|
token: ${{ secrets.CI_TOKEN }}
|
2023-02-09 22:13:51 +00:00
|
|
|
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-08 08:38:31 +00:00
|
|
|
with:
|
|
|
|
repository: waku-org/js-waku
|
2023-03-16 20:05:19 +00:00
|
|
|
if: ${{ steps.release.outputs.releases_created }}
|
2023-02-09 22:13:51 +00:00
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
2023-03-16 20:05:19 +00:00
|
|
|
if: ${{ steps.release.outputs.releases_created }}
|
2023-02-09 22:13:51 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
|
|
|
|
- run: npm install
|
2023-03-16 20:05:19 +00:00
|
|
|
if: ${{ steps.release.outputs.releases_created }}
|
2023-02-09 22:13:51 +00:00
|
|
|
|
|
|
|
- run: npm run build
|
2023-03-16 20:05:19 +00:00
|
|
|
if: ${{ steps.release.outputs.releases_created }}
|
2023-02-09 22:13:51 +00:00
|
|
|
|
2023-03-29 08:36:37 +00:00
|
|
|
- run: npm run publish
|
2023-03-16 20:05:19 +00:00
|
|
|
if: ${{ steps.release.outputs.releases_created }}
|
2023-03-29 08:36:37 +00:00
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_JS_WAKU_PUBLISH }}
|