Add jest workflow
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
fcaa126147
commit
e909ff5ad0
1 changed files with 18 additions and 0 deletions
18
.github/workflows/test.yaml
vendored
Normal file
18
.github/workflows/test.yaml
vendored
Normal 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"
|
Loading…
Add table
Reference in a new issue