/
QuickMeet
/
Chat.Desktop
Обзор
Документация
Войти
/
QuickMeet
/
Chat.Desktop
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/validate-pr.yml
79 строк
3 KB
Jean Brito
fix: Links inside PDFs redirecting instead of opening on the browser (#2935)
23 авг 2024, 20:16
Не верифицирован
23 авг 2024, 20:16
b536d81
Код
Авторство
О чём код?
name: Validate pull request on: pull_request: branches: - master concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true jobs: check: strategy: fail-fast: false matrix: os: - ubuntu-latest - macos-latest - windows-latest runs-on: ${{ matrix.os }} steps: - name: Disable git core.autocrlf run: git config --global core.autocrlf false - name: Checkout code uses: actions/checkout@v3 - name: Setup Node 20.14.0 uses: actions/setup-node@v4 with: node-version: '20.14.0' - name: Setup node_modules cache uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Install package dependencies run: yarn install - name: Lint run: yarn lint - name: Test run: yarn test - name: Build app/ run: yarn build env: NODE_ENV: production - name: Build uncompressed on dist/ if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }} run: yarn electron-builder --dir - name: Build uncompressed on dist/ if: ${{ matrix.os == 'windows-latest' }} run: yarn electron-builder --x64 --ia32 --dir - name: Running executable on ${{ runner.os }} if: ${{ matrix.os == 'ubuntu-latest' }} run: | xvfb-run timeout 30 ./dist/linux-unpacked/rocketchat-desktop || code=$? if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi - name: Running executable on ${{ runner.os }} if: ${{ matrix.os == 'macos-latest' }} run: | brew install coreutils gtimeout 30 ./dist/mac-arm64/Rocket.Chat.app/Contents/MacOS/Rocket.Chat || code=$? if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi - name: Running executable on ${{ runner.os }} if: ${{ matrix.os == 'windows-latest' }} run: | $job = Start-Job -ScriptBlock { .\dist\win-unpacked\Rocket.Chat.exe } if (Wait-Job $job -Timeout 30) { Write-Host $(Receive-Job -Job $job) } Remove-Job -force $job $job = Start-Job -ScriptBlock { .\dist\win-ia32-unpacked\Rocket.Chat.exe } if (Wait-Job $job -Timeout 30) { Write-Host $(Receive-Job -Job $job) } Remove-Job -force $job