mermaid/.github/workflows/checks.yml

26 lines
536 B
YAML
Raw Normal View History

on:
push: {}
pull_request:
types:
- opened
- synchronize
- ready_for_review
2022-02-10 20:32:21 +01:00
name: Static analysis
jobs:
test:
runs-on: ubuntu-latest
name: check tests
if: github.repository_owner == 'mermaid'
2022-02-10 20:32:21 +01:00
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: testomatio/check-tests@stable
with:
framework: cypress
2022-06-20 07:33:42 +02:00
tests: "./cypress/e2e/**/**.spec.js"
2022-02-10 20:32:21 +01:00
token: ${{ secrets.GITHUB_TOKEN }}
has-tests-label: true