-
Notifications
You must be signed in to change notification settings - Fork 35
38 lines (35 loc) · 1.05 KB
/
debug.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
name: Run Nala Debugging
on:
workflow_dispatch:
inputs:
tags:
description: 'Test scenario tags, if empty all tests will run. i.e., @marquee'
required: false
type: string
platform:
description: 'Platform to run tests on; select one, options: [ubuntu-latest, windows-latest, macos-latest]'
required: true
type: string
jobs:
action:
name: Debugging tests
runs-on: ${{ inputs.platform }}
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Run Nala for Trace Viewer ${{ inputs.platform }}
uses: ./
env:
labels: ${{ inputs.tags }}
reporter: html
IMS_EMAIL: ${{ secrets.IMS_EMAIL }}
IMS_PASS: ${{ secrets.IMS_PASS }}
HLX_TKN: ${{ secrets.HLX_TKN }}
SLACK_WH: ${{ secrets.SLACK_WH }}
- name: Nala Reporting
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30