Skip to content

Bump peter-evans/create-pull-request from 5 to 7 #9

Bump peter-evans/create-pull-request from 5 to 7

Bump peter-evans/create-pull-request from 5 to 7 #9

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@v2
# Install Node 16
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16
# Install NPM dependencies
- run: npm install
# Run tests
- run: npm test