-
Notifications
You must be signed in to change notification settings - Fork 9
38 lines (35 loc) · 1.03 KB
/
mhrSearch.yaml
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: MHR TEST Environment
on:
workflow_dispatch:
jobs:
Regression:
runs-on: windows-latest
defaults:
run:
working-directory: e2e-testing
steps:
- uses: actions/checkout@v3
with:
ref: assets
- name: Use Node.js
uses: actions/setup-node@v1
with:
env: true
node-version: "12.x"
- run: npm install
- run: npm run mhrSearch
if: ${{ always() }}
env:
CYPRESS_PPR_DOMAIN: ${{ secrets.PPR_DOMAIN }}
CYPRESS_BCSC_USERNAME: ${{secrets.BCSC_USERNAME}}
CYPRESS_BCSC_PASSWORD: ${{secrets.BCSC_PASSWORD}}
CYPRESS_TYPE: ${{secrets.TYPE}}
- name: Rocket.Chat Notification
uses: RocketChat/[email protected]
if: success()
with:
type: ${{ job.status }}
job_name: "Regression Test - TEST --->"
icon_emoji: ":bell:"
channel: "Automation-Testing-Notifications"
url: ${{ secrets.ROCKETCHAT_WEBHOOK }}