Skip to content

Add initial project configuration files and settings #1

Add initial project configuration files and settings

Add initial project configuration files and settings #1

Workflow file for this run

name: Run Jest Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Jest tests
run: npx jest --verbose ./test --coverage