Welcome to mirror list, hosted at ThFree Co, Russian Federation.

e2e-visual.yml « workflows « .github - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd0ec056f57f83b36aed621858f882ea59b733cc (plain)
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
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.21.1 install
      - run: npm install
      - name: Run the e2e visual tests
        run: npm run test:e2e:visual
        env:
          PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}