Skip to content

Update README.md

Update README.md #7398

Workflow file for this run

# .github/workflows/ci-cd.yml
name: CI/CD Pipeline
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Build and deploy
env:
NODE_ENV: production
run: npm run build && npm run deploy