mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 23:03:07 +00:00
27 lines
592 B
YAML
27 lines
592 B
YAML
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
NODE_JS: "22"
|
|
|
|
jobs:
|
|
pre-release:
|
|
name: fleet-checker
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'workflow_dispatch'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: logos-messaging/logos-messaging-js
|
|
|
|
- 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
|