#49, #123 - Setup UI integration and performance testing (#148)

This commit is contained in:
Stefan Ceriu
2022-08-18 16:32:29 +03:00
committed by GitHub
parent f17d0c0cb1
commit 09daf52750
27 changed files with 954 additions and 78 deletions

40
.github/workflows/integration-tests.yml vendored Normal file
View File

@@ -0,0 +1,40 @@
name: Integration tests
on:
schedule:
- cron: '0 3 * * 1-5'
workflow_dispatch:
jobs:
integration_tests:
name: Integration Tests
runs-on: macos-12
concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
group: integration-tests-${{ github.head_ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec fastlane integration_tests
env:
INTEGRATION_TESTS_HOST: ${{ secrets.INTEGRATION_TESTS_HOST }}
INTEGRATION_TESTS_USERNAME: ${{ secrets.INTEGRATION_TESTS_USERNAME }}
INTEGRATION_TESTS_PASSWORD: ${{ secrets.INTEGRATION_TESTS_PASSWORD }}

View File

@@ -1,4 +1,4 @@
name: Build alpha release
name: Alpha release
on:
@@ -34,7 +34,7 @@ jobs:
# Common setup
- name: Brew bundle
run:
brew bundle
brew update && brew bundle && brew upgrade
- name: Bundle install
run: |

View File

@@ -33,6 +33,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gems-
- name: Brew bundle
run:
brew update && brew bundle && brew upgrade
- name: Bundle install
run: |
bundle config path vendor/bundle