Skip to content

Commit

Permalink
Created ci-cd-actions.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
shebz2023 authored Mar 13, 2024
1 parent 4a2ebd0 commit 0d55200
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-cd-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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

0 comments on commit 0d55200

Please sign in to comment.