Skip to content

adding test workflow #1

adding test workflow

adding test workflow #1

Workflow file for this run

name: Test Project
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Get Code
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run tests
run: npmt test