Chore/lerna publishing config #2124
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: Scroll regression tests | |
on: | |
pull_request: | |
paths: | |
- packages/desktop/** | |
jobs: | |
regression-tests: | |
timeout-minutes: 25 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
steps: | |
- name: "Print OS" | |
run: echo ${{ matrix.os }} | |
- uses: actions/checkout@v3 | |
- name: Setup environment | |
uses: ./.github/actions/setup-env | |
with: | |
bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/desktop,backend-bundle" | |
- name: "Install libs" | |
run: sudo apt-get update && sudo apt-get install -y libgtk2.0-0 libgtk-3-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb | |
- name: "Remove test files workaround" | |
run: find packages/desktop/src -name '*.test.*' -delete && find packages/backend/src -name '*.test.*' -delete | |
- uses: cypress-io/github-action@v2 | |
with: | |
install: false | |
command: npm run regression-test:ci | |
working-directory: packages/desktop | |
- name: Archive test screenshots | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-screenshots-linux | |
path: packages/desktop/cypress/snapshots |