Skip to content

Commit

Permalink
Add GitHub Action for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktSeidlSWM committed Jun 24, 2024
1 parent e271523 commit 2d48580
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 2d48580

Please sign in to comment.