Skip to content

Initial commit

Initial commit #6

Workflow file for this run

name: Run tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test