Username Link QR Code

This commit is contained in:
Fedor Indutny
2023-07-20 05:14:08 +02:00
committed by GitHub
parent 68dfc46185
commit e1d2dbd8ff
50 changed files with 2187 additions and 120 deletions

View File

@@ -91,6 +91,8 @@ jobs:
- run: yarn prepare-beta-build
- run: yarn test-node
- run: yarn test-electron
env:
ARTIFACTS_DIR: artifacts/macos
timeout-minutes: 5
- run: yarn build
env:
@@ -102,6 +104,12 @@ jobs:
NODE_ENV: production
- run: yarn test-eslint
- name: Upload artifacts on failure
if: failure()
uses: actions/upload-artifact@v3
with:
path: artifacts
linux:
needs: lint
runs-on: ubuntu-latest
@@ -150,12 +158,19 @@ jobs:
- run: xvfb-run --auto-servernum yarn test-electron
timeout-minutes: 5
env:
ARTIFACTS_DIR: artifacts/linux
LANG: en_US
LANGUAGE: en_US
- run: xvfb-run --auto-servernum yarn test-release
env:
NODE_ENV: production
- name: Upload artifacts on failure
if: failure()
uses: actions/upload-artifact@v3
with:
path: artifacts
windows:
needs: lint
runs-on: windows-latest
@@ -205,11 +220,19 @@ jobs:
DISABLE_INSPECT_FUSE: on
- run: yarn test-electron
env:
ARTIFACTS_DIR: artifacts/windows
timeout-minutes: 5
- run: yarn test-release
env:
SIGNAL_ENV: production
- name: Upload artifacts on failure
if: failure()
uses: actions/upload-artifact@v3
with:
path: artifacts
mock-tests:
needs: lint
runs-on: ubuntu-latest