Skip to content

changelog updated

changelog updated #6

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
run_tests:
runs-on: ubuntu-latest
container:
image: node:18-alpine3.17
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Jest
run: npm i [email protected]
- name: Run tests
run: npm test