Skip to content

Merge pull request #7 from sigalor/dependabot/github_actions/peter-ev… #15

Merge pull request #7 from sigalor/dependabot/github_actions/peter-ev…

Merge pull request #7 from sigalor/dependabot/github_actions/peter-ev… #15

Workflow file for this run

name: Unit tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- uses: actions/checkout@v4
# Install Node 16
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16
# Install NPM dependencies
- run: npm install
# Run tests
- run: npm test