Create checks.yml (#1)

* Create checks.yml

* Update checks.yml
This commit is contained in:
Michael Bodnarchuk 2019-12-24 00:08:38 +02:00 committed by GitHub
parent ffe16f89bb
commit 85fb12155b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/workflows/checks.yml vendored Normal file
View File

@ -0,0 +1,19 @@
on: [push]
name: Static analysis
jobs:
test:
runs-on: ubuntu-latest
name: check tests
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: testomatio/check-tests@stable
with:
framework: cypress
tests: "./cypress/integration/**/**.spec.js"
token: ${{ secrets.GITHUB_TOKEN }}
has-tests-label: true