mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* remove react native package * upgrade nodejs * upgrade libp2p * upgrade typescript, use 22 node * up lock * fix node compatibility * upgrade playwright * upgrade proto * update tests
27 lines
574 B
YAML
27 lines
574 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: 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
|