mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* chore: add reliability tests package with longevity tests * chore: add reliability tests package with longevity tests * chore: fix ci errors * chore: fix * chore: fix timeout
38 lines
682 B
YAML
38 lines
682 B
YAML
name: Run Reliability Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "chore/longevity-tests"
|
|
|
|
env:
|
|
NODE_JS: "20"
|
|
|
|
jobs:
|
|
node:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: waku-org/js-waku
|
|
|
|
- name: Remove unwanted software
|
|
uses: ./.github/actions/prune-vm
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- uses: ./.github/actions/npm
|
|
|
|
- run: npm run build:esm
|
|
|
|
- name: Run tests
|
|
timeout-minutes: 150
|
|
run: npm run test:longevity
|