Add CI/CD workflow

pull/1064/head
unknown 2024-11-26 01:41:11 +05:30
parent 478d375125
commit 43e64e2de0
1 changed files with 31 additions and 0 deletions

31
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: yarn install
- name: Build the project
run: yarn build
- name: Run tests
run: yarn test