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

170 lines
4.5 KiB
YAML
Raw Normal View History

name: CI
on:
push:
branches:
2022-05-02 06:32:56 +00:00
- "master"
- "staging"
- "trying"
pull_request:
env:
NWAKU_VERSION: "v0.11"
NODE_JS: "16"
jobs:
2022-08-19 13:26:31 +00:00
check:
runs-on: ubuntu-latest
steps:
2022-08-19 13:26:31 +00:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
2022-08-19 13:26:31 +00:00
- uses: bahmutov/npm-install@v1
- run: npm run test:lint
- run: npm run test:prettier
- run: npm run test:spelling
- run: npm run test:tsc
2022-08-25 05:50:46 +00:00
- run: npm run doc:html
2022-08-19 13:26:31 +00:00
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: bahmutov/npm-install@v1
- run: npm run build
2022-08-19 13:26:31 +00:00
proto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: bahmutov/npm-install@v1
- 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
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: bahmutov/npm-install@v1
- run: npm run test:browser
2022-08-19 13:26:31 +00:00
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get nwaku
2022-08-19 13:26:31 +00:00
shell: bash
run: |
mkdir -p nwaku/build
cd nwaku
wget "https://github.com/status-im/nwaku/releases/download/${NWAKU_VERSION}/nim-waku-ubuntu-latest.tar.gz"
2022-08-19 13:26:31 +00:00
tar xavf nim-waku-ubuntu-latest.tar.gz
- name: Ensure wakunode2 is ready
shell: bash
run: |
uname -a
cd nwaku/build
2022-08-19 13:26:31 +00:00
./wakunode2 --help
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: bahmutov/npm-install@v1
- run: npm run test:node
env:
DEBUG: "waku:nwaku*,waku:test*"
2021-03-26 01:38:04 +00:00
- name: Upload logs on failure
uses: actions/upload-artifact@v2
if: failure()
with:
name: nwaku-logs
2021-03-26 01:38:04 +00:00
path: log/
2022-08-19 09:22:35 +00:00
2022-05-27 11:18:36 +00:00
node_with_go_waku:
runs-on: ubuntu-latest
env:
GO_WAKU_VERSION: "0.2.1"
WAKU_SERVICE_NODE_DIR: ./go-waku
2022-08-25 04:26:47 +00:00
WAKU_SERVICE_NODE_BIN: ./waku
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
- name: Get go-waku
shell: bash
run: |
pwd
mkdir -p go-waku/
cd go-waku
wget "https://github.com/status-im/go-waku/releases/download/v${GO_WAKU_VERSION}/gowaku-${GO_WAKU_VERSION}-x86_64.deb"
sudo apt install ./gowaku-${GO_WAKU_VERSION}-x86_64.deb
cp $(which waku) ./
- name: Ensure go-waku is ready
shell: bash
run: |
uname -a
2022-08-25 04:26:47 +00:00
cd "${WAKU_SERVICE_NODE_DIR}"
"${WAKU_SERVICE_NODE_BIN}" --version
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: bahmutov/npm-install@v1
- run: npm run test:node
env:
DEBUG: "waku:nwaku*,waku:test*"
- name: Upload logs on failure
uses: actions/upload-artifact@v2
if: failure()
with:
name: go-waku-logs
path: log/
2022-08-19 09:22:35 +00:00
release_next:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
2022-08-19 13:26:31 +00:00
needs: [check, build, proto, browser, node]
2022-08-19 09:22:35 +00:00
steps:
2022-08-19 13:32:43 +00:00
- uses: actions/checkout@v2.3.3
- uses: actions/setup-node@v3
2022-08-19 09:22:35 +00:00
with:
node-version: ${{ env.NODE_JS }}
2022-08-19 13:32:43 +00:00
- uses: bahmutov/npm-install@v1
2022-08-19 09:22:35 +00:00
- name: Append git hash to version
shell: bash
run: |
CURR_VERSION=$(cat package.json | jq .version | tr -d '"')
GIT_HASH=$(git rev-parse --short HEAD)
cat package.json| jq --arg version "$CURR_VERSION-$GIT_HASH" '.version |= $version' > _package.json
mv -f _package.json package.json
- name: Authenticate with registry
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ./.npmrc
2022-08-19 13:32:43 +00:00
- run: npm publish --tag next --access public