Skip to content

Feature/GitHub actions to run Jest tests #2

Feature/GitHub actions to run Jest tests

Feature/GitHub actions to run Jest tests #2

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '23.4'
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm test