Create jest.yml

This commit is contained in:
Abhishek Gahlot 2020-07-27 14:16:24 +05:30 committed by GitHub
parent 0c80f84794
commit 18d7039dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.github/workflows/jest.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Jest-Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run tests
run: yarn test -u