ExpressJs — CI/CD Pipeline for Express
Automate testing, building, and deploying your Express app using CI/CD tools like GitHub Actions, GitLab CI, or Jenkins.
name: Express CI/CD
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test