synt_backend
Version:
Synt light-weight node backend service
23 lines (22 loc) • 423 B
YAML
version: 0.2
phases:
install:
runtime-versions:
nodejs: 14
commands:
- echo Installing
pre_build:
commands:
- echo Installing source NPM dependencies.
- npm install
build:
commands:
- echo Build started on `date`
- echo Compiling the Node.js code
- npm build
post_build:
commands:
- echo Build completed on `date`
artifacts:
files:
- "**/*"