Select Git revision
gradlew.bat
Forked from
YAGOUBI Rim / Game of life Template
Source project has a limited visibility.
-
LABOUREL Arnaud authoredLABOUREL Arnaud authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 372 B
stages:
- build_stage
- deploy_stage
build:
stage: build_stage
image: node
script:
#- apt update -y
# - apt install npm -y
- npm install
artifacts:
paths:
- node_modules
- package-lock.json
deploy:
stage: deploy_stage
image : node
script:
# - apt update -y
# - apt install nodejs -y
- node app.js > /dev/null 2>&1 &