Skip to content

add Cart screen with items, billing and checkout #50

add Cart screen with items, billing and checkout

add Cart screen with items, billing and checkout #50

Workflow file for this run

name: Zappify CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: backend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Syntax Check
run: node --check server.js
- name: Build Docker image
run: docker build -t zappify-backend .