Skip to content

Workflow automated test no env #417

Workflow automated test no env

Workflow automated test no env #417

Workflow file for this run

name: Automated Unit Testing
on:
pull_request:
workflow_dispatch:
jobs:
run-unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout under $GITHUB_WORKSPACE
uses: actions/checkout@main
- name: Set up NodeJS
uses: actions/setup-node@v1
with:
node-version: 20.11.1
- name: Install all dependencies
run: npm install
- name: Run Tests
run: npm run test-unit