Skip to content

initial commit with CI #1

initial commit with CI

initial commit with CI #1

Workflow file for this run

name: Zappify CI
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run app (test)
run: node index.js
- name: Build Docker image
run: docker build -t zappify-app .