From 85fb12155bf1ac4973f702d170f98ed71ff7ebab Mon Sep 17 00:00:00 2001 From: Michael Bodnarchuk Date: Tue, 24 Dec 2019 00:08:38 +0200 Subject: [PATCH] Create checks.yml (#1) * Create checks.yml * Update checks.yml --- .github/workflows/checks.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/checks.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..bc60f5977 --- /dev/null +++ b/.github/workflows/checks.yml @@ -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 +