feat: add rln-identity example and update rln-js #760
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
jobs: | |
examples_build_and_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
example: | |
[ | |
eth-pm, | |
relay-angular-chat, | |
relay-reactjs-chat, | |
store-reactjs-chat, | |
web-chat, | |
noise-js, | |
noise-rtc, | |
relay-direct-rtc, | |
rln-js | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install NodeJS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
cache: "npm" | |
cache-dependency-path: "*/package-lock.json" | |
- name: install | |
run: npm install | |
working-directory: "examples/${{ matrix.example }}" | |
- name: build | |
run: npm run build | |
working-directory: "examples/${{ matrix.example }}" | |
- 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] | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_JS }} | |
- uses: bahmutov/npm-install@v1 | |
- name: Build package | |
run: npm run build | |
working-directory: "create-waku-app" | |
- 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 | |
working-directory: "create-waku-app" | |
- name: Authenticate with registry | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.WAKU_CREATE_APP_PUBLISH }}" > ./.npmrc | |
working-directory: "create-waku-app" | |
- run: npm publish --tag latest --access public | |
working-directory: "create-waku-app" |