Skip to content

Improve connection speed/reliability and add more logging around connections #5197

Improve connection speed/reliability and add more logging around connections

Improve connection speed/reliability and add more logging around connections #5197

Workflow file for this run

name: Check
on:
pull_request:
jobs:
check:
timeout-minutes: 25
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019]
steps:
- name: "Print OS"
run: echo ${{ matrix.os }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: "Remove test files workaround (jest types conflicting with cypress types)"
if: ${{ runner.os == 'Windows' }}
run: find packages/desktop/src -name '*.test.*' -delete
shell: bash
- name: "Setup environment for Linux and MacOS"
uses: ./.github/actions/setup-env
if: ${{ runner.os != 'Windows' }}
with:
bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/desktop,@quiet/mobile,e2e-tests,backend-bundle"
- name: "Setup environment for Windows"
uses: ./.github/actions/setup-env
if: ${{ runner.os == 'Windows' }}
with:
bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/desktop,e2e-tests,backend-bundle"
- name: "Lint"
if: ${{ runner.os != 'Windows' }}
run: lerna run lint-ci --stream