Commit 4f5c1ecc authored by tom's avatar tom

delete test workflow

parent d5b63d33
name: playwright name: Playwright
on: [pull_request] on: [pull_request]
jobs: jobs:
test: test:
name: Run components visual tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: mcr.microsoft.com/playwright:v1.27.0-focal image: mcr.microsoft.com/playwright:v1.27.0-focal
......
name: Test workflow
on:
workflow_run:
workflows: ["Linters"]
types:
- completed
jobs:
on-success:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Test depended workflow
runs-on: ubuntu-latest
steps:
- name: Print result
run: echo Success
on-error:
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
name: Test depended workflow
runs-on: ubuntu-latest
steps:
- name: Print result
run: echo Failure
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment