-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (43 loc) · 1.19 KB
/
allure-report.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
name: Allure Report
run-name: ${{ github.actor }} is creating Allure report 🚀
on:
push:
branches-ignore:
- '!main'
permissions: write-all
jobs:
autotests:
name: Run tests and generate Allure Report
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/[email protected]
- name: Set up Node 20
uses: actions/[email protected]
with:
node-version: 20
cache: npm
- name: Install npm
run: npm install
- run: npm test
continue-on-error: true
- name: Setup Allure History
uses: actions/[email protected]
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Generate Allure Report
uses: simple-elf/[email protected]
if: always()
with:
allure_results: allure-results
allure_history: allure-history
- name: Publish Allure Report
if: always()
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: allure-history