Skip to content

Commit

Permalink
added jest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
klemmchr committed Dec 29, 2019
1 parent 6cbbf0a commit c989364
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/checks.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/test-analysis.yml
@@ -0,0 +1,26 @@
on: [push,pull_request]

name: Test Analysis

jobs:
test:
runs-on: ubuntu-latest
name: Check Tests
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check Jest Tests
uses: testomatio/check-tests@stable
with:
framework: jest
tests: "./src/**/**.spec.js"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check Cypress Tests
uses: testomatio/check-tests@stable
with:
framework: cypress
tests: "./cypress/integration/**/**.spec.js"
token: ${{ secrets.GITHUB_TOKEN }}


0 comments on commit c989364

Please sign in to comment.