Prevent 'connected' event listener accumulation on reconnect by using .once() instead of .on() #8354
This file contains hidden or 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
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: Node.js CI | |
| env: | |
| RIPPLED_DOCKER_IMAGE: rippleci/rippled:develop | |
| GIT_REF: ${{ inputs.git_ref || github.ref }} | |
| on: | |
| push: | |
| branches: [main] | |
| tags: | |
| - "**" | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| workflow_dispatch: | |
| workflow_call: | |
| inputs: | |
| git_ref: | |
| description: "Git ref to checkout (branch, tag, or commit SHA)" | |
| required: true | |
| type: string | |
| run_unit_tests: | |
| description: "Run unit tests job" | |
| required: false | |
| type: boolean | |
| default: true | |
| run_integration_tests: | |
| description: "Run integration tests job" | |
| required: false | |
| type: boolean | |
| default: true | |
| run_browser_tests: | |
| description: "Run browser tests job" | |
| required: false | |
| type: boolean | |
| default: true | |
| jobs: | |
| build-and-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GIT_REF }} | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup npm version 10 | |
| run: | | |
| npm i -g npm@10 --registry=https://registry.npmjs.org | |
| - name: Cache node modules | |
| id: cache-nodemodules | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| # caching node_modules | |
| path: | | |
| node_modules | |
| */*/node_modules | |
| key: ${{ runner.os }}-deps-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-deps-${{ matrix.node-version }}- | |
| - name: Install Dependencies | |
| if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - run: npm run build | |
| - run: npm run lint | |
| unit: | |
| if: ${{ github.event_name != 'workflow_dispatch' || inputs.run_unit_tests != false }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GIT_REF }} | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup npm version 10 | |
| run: | | |
| npm i -g npm@10 --registry=https://registry.npmjs.org | |
| - name: Cache node modules | |
| id: cache-nodemodules | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| # caching node_modules | |
| path: | | |
| node_modules | |
| */*/node_modules | |
| key: ${{ runner.os }}-deps-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-deps-${{ matrix.node-version }}- | |
| - name: Install Dependencies | |
| if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - run: npm run build | |
| - run: npm test | |
| integration: | |
| if: ${{ github.event_name != 'workflow_dispatch' || inputs.run_integration_tests != false }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GIT_REF }} | |
| fetch-depth: 0 | |
| - name: Run docker in background | |
| run: | | |
| docker run --detach --rm -p 6006:6006 --volume "${{ github.workspace }}/.ci-config/":"/etc/opt/ripple/" --name rippled-service --health-cmd="rippled server_info || exit 1" --health-interval=5s --health-retries=10 --health-timeout=2s --env GITHUB_ACTIONS=true --env CI=true --entrypoint bash ${{ env.RIPPLED_DOCKER_IMAGE }} -c "mkdir -p /var/lib/rippled/db/ && rippled -a" | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup npm version 10 | |
| run: | | |
| npm i -g npm@10 --registry=https://registry.npmjs.org | |
| - name: Cache node modules | |
| id: cache-nodemodules | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| # caching node_modules | |
| path: | | |
| node_modules | |
| */*/node_modules | |
| key: ${{ runner.os }}-deps-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-deps-${{ matrix.node-version }}- | |
| - name: Install Dependencies | |
| if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - run: npm run build | |
| - name: Run integration test | |
| run: npm run test:integration | |
| - name: Stop docker container | |
| if: always() | |
| run: docker stop rippled-service | |
| browser: | |
| if: ${{ github.event_name != 'workflow_dispatch' || inputs.run_browser_tests != false }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GIT_REF }} | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Run docker in background | |
| run: | | |
| docker run --detach --rm -p 6006:6006 --volume "${{ github.workspace }}/.ci-config/":"/etc/opt/ripple/" --name rippled-service --health-cmd="rippled server_info || exit 1" --health-interval=5s --health-retries=10 --health-timeout=2s --env GITHUB_ACTIONS=true --env CI=true --entrypoint bash ${{ env.RIPPLED_DOCKER_IMAGE }} -c "mkdir -p /var/lib/rippled/db/ && rippled -a" | |
| - name: Setup npm version 10 | |
| run: | | |
| npm i -g npm@10 --registry=https://registry.npmjs.org | |
| - name: Cache node modules | |
| id: cache-nodemodules | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| # caching node_modules | |
| path: | | |
| node_modules | |
| */*/node_modules | |
| key: ${{ runner.os }}-deps-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-deps-${{ matrix.node-version }}- | |
| - name: Install Dependencies | |
| if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - run: npm run build | |
| - name: Run integration test | |
| run: npm run test:browser | |
| - name: Stop docker container | |
| if: always() | |
| run: docker stop rippled-service | |
| # Scans dependencies for CRITICAL/HIGH vulnerabilities using SBOM and Trivy (same flow as release.yml). | |
| vulnerability-scan: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GIT_REF }} | |
| fetch-depth: 0 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| - name: Setup npm version 10 | |
| run: | | |
| npm i -g npm@10 --registry=https://registry.npmjs.org | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Install cyclonedx-npm | |
| run: npm install -g @cyclonedx/cyclonedx-npm@4.0.2 | |
| - name: Generate CycloneDX Software Bill of Materials (SBOM) in JSON format | |
| run: cyclonedx-npm --output-format json --output-file sbom.json | |
| - name: Scan SBOM for vulnerabilities using Trivy | |
| uses: aquasecurity/trivy-action@0.28.0 | |
| with: | |
| scan-type: sbom | |
| scan-ref: sbom.json | |
| format: table | |
| exit-code: 0 # TODO: Change to 1 to fail CI on vulnerabilities | |
| output: vuln-report.txt | |
| severity: CRITICAL,HIGH | |
| - name: Print vulnerability report | |
| if: always() | |
| run: | | |
| echo "=== Vulnerability Scan Report ===" | |
| cat vuln-report.txt |