Add CI/CD workflow

This commit is contained in:
unknown
2024-11-26 01:41:11 +05:30
parent 478d375125
commit 43e64e2de0

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