Skip to content

Setup React component testing #2

Setup React component testing

Setup React component testing #2

Workflow file for this run

name: Jest
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '29 3 * * 5'
jobs:
jest:
name: Run Jest tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Run Jest
run: yarn test