You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the action to your workflow right after your tests, which produce Allure Report:
10
+
11
+
```yaml
12
+
- name: Run Allure Action
13
+
uses: ./
14
+
with:
15
+
# Github Token that uses for posting the comments in Pull Requests
16
+
github-token: ${{ secrets.GITHUB_TOKEN }}
17
+
```
18
+
19
+
## Configuration
20
+
21
+
The action utilizes `allurerc.js` configuration file and use `output` field as a path, where it should search for the generated reports.
22
+
23
+
### Remote reports
24
+
25
+
If you want to be able to open remote reports automatically hosted on Allure Service, provide `allureService` configuration to the `allurerc.js` configuration file:
26
+
27
+
```diff
28
+
import { defineConfig } from "allure";
29
+
import { env } from "node:process";
30
+
31
+
export default defineConfig({
32
+
output: "allure-report",
33
+
+ allureService: {
34
+
+ // don't forget to provide the access token to your pipeline
0 commit comments