Skip to content

added tests to package.json #4

added tests to package.json

added tests to package.json #4

Workflow file for this run

name: CI Node
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Build TypeScript
run: npm run build
- name: start
run: npm run start
- name: Run Tests
run: npm run test