mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-27 00:48:06 +08:00
e909ff5ad0
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
19 lines
393 B
YAML
19 lines
393 B
YAML
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"
|