Adjust project bootstrap scripts to be windows-friendly #2380
Workflow file for this run
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: Desktop tests | |
on: | |
pull_request: | |
paths: | |
- packages/desktop/** | |
jobs: | |
desktop-tests: | |
timeout-minutes: 25 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macos-latest] | |
steps: | |
- name: "Print OS" | |
run: echo ${{ matrix.os }} | |
- uses: actions/checkout@v3 | |
- name: "Setup environment" | |
uses: ./.github/actions/setup-env | |
with: | |
cachePrefix: "desktop-tests" | |
bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,quiet,backend-bundle" | |
- name: "Unit tests" | |
run: lerna run test --scope quiet --stream | |
- name: "desktop-state-manager bracket tests" | |
run: lerna run rtl-test --scope quiet --stream |