Skip to content

Merge pull request #254 from Decatur-Robotics/dependabot/npm_and_yarn… #21

Merge pull request #254 from Decatur-Robotics/dependabot/npm_and_yarn…

Merge pull request #254 from Decatur-Robotics/dependabot/npm_and_yarn… #21

Workflow file for this run

name: Unit Tests Passing?
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Unit Tests
run: npm run test