Skip to content

Workflow file for this run

name: Jest Testing
on: push
jobs:
jest:
name: 'Jest testing'
runs-on: ubuntu-22.04
permissions: write-all
steps:
- uses: actions/checkout@v4
with:
node-version: '20.x'
- name: Install Dependencies
run: npm install
- name: 'start testing'
run: npm run test