mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* feat: introduce WSS checker CI * rename CI step * specify nodejs * try * remove not needed dep * use npx and fail on failure * run by dispatch only and improve naming * fix fail detection
27 lines
574 B
YAML
27 lines
574 B
YAML
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
NODE_JS: "20"
|
|
|
|
jobs:
|
|
pre-release:
|
|
name: fleet-checker
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'workflow_dispatch'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: waku-org/js-waku
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_JS }}
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run build
|
|
|
|
- run: node --unhandled-rejections=none ./ci/wss-checker.js
|