fix soon to be broken github actions that need the node24 runner #6569
Workflow file for this run
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
| name: Check | |
| on: | |
| pull_request: | |
| jobs: | |
| check: | |
| timeout-minutes: 25 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, windows-latest] | |
| steps: | |
| - name: "Print OS" | |
| run: echo ${{ matrix.os }} | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| - 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,helia,@quiet/node-common" | |
| - 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,helia,@quiet/node-common" | |
| - name: "Lint" | |
| if: ${{ runner.os != 'Windows' }} | |
| run: lerna run lint-ci --stream |