Skip to content

Added the basics for a CI and CD, Needs to be updated when, backend a… #1

Added the basics for a CI and CD, Needs to be updated when, backend a…

Added the basics for a CI and CD, Needs to be updated when, backend a… #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test