Skip to content

Created ci-cd-actions.yml file #1

Created ci-cd-actions.yml file

Created ci-cd-actions.yml file #1

Workflow file for this run

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