Add jest workflow

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2022-10-26 10:48:04 +02:00
parent fcaa126147
commit e909ff5ad0
No known key found for this signature in database
GPG Key ID: D1D45825D60C24D2

18
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Run jest tests
on:
pull_request: {}
jobs:
jest:
name: Run jest tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/setup-node@v3
with:
cache: "yarn"
- name: Install dependencies
run: "yarn install"
- name: Jest
run: "yarn run test"