generated from vividus-framework/vividus-starter
-
Notifications
You must be signed in to change notification settings - Fork 302
59 lines (51 loc) · 1.33 KB
/
electron-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Electron Demo Test Run
on:
workflow_dispatch:
schedule:
- cron: '30 4 * * MON-FRI'
push:
branches:
- main
paths:
- '**/electron/**'
- '.github/workflows/electron-tests.yml'
pull_request:
branches:
- main
paths:
- '**/electron/**'
- '.github/workflows/electron-tests.yml'
jobs:
electron-test-run:
runs-on: macos-latest
steps:
- name: Checkout (including submodules)
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache tests history
uses: actions/cache@v4
with:
save-always: true
path: output/history
key: tests-history-cache
restore-keys: |
tests-history-cache
- name: Install VS code
run: brew install --cask visual-studio-code
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: 'gradle'
- name: Run Electron tests
run: |
./gradlew runStories -Pvividus.configuration.suites=electron \
-Pvividus.configuration.profiles=desktop/electron,web/desktop/chrome
- name: Publish Electron tests report
if: always()
uses: actions/upload-artifact@v4
with:
name: Electron tests report
path: output/reports/allure