feat: 2312 pass invitation data to createNetwork saga and LAUNCH_COMMUNITY… #5032
This file contains 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
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 |