mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 23:12:23 +00:00
93a81a1369
* Update e2e-pr.yml * Update e2e-pr.yml * Update e2e-pr.yml * visual Co-authored-by: Nikhil <nikhil.k.mandlik@nasa.gov>
26 lines
649 B
YAML
26 lines
649 B
YAML
name: "e2e-visual"
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types:
|
|
- labeled
|
|
- opened
|
|
schedule:
|
|
- cron: '28 21 * * 1-5'
|
|
|
|
jobs:
|
|
e2e-visual:
|
|
if: ${{ github.event.label.name == 'pr:visual' }} || ${{ github.event.workflow_dispatch }} || ${{ github.event.schedule }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
- run: npx playwright@1.19.2 install
|
|
- run: npm install
|
|
- name: Run the e2e visual tests
|
|
run: npm run test:e2e:visual
|
|
env:
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|