Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
btcoin23 committed Dec 19, 2024
1 parent 5d15d67 commit 34422ba
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 277 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI/CD Pipeline

on:
push:
branches:
- main

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm start
Loading

0 comments on commit 34422ba

Please sign in to comment.