37 lines
807 B
YAML
37 lines
807 B
YAML
steps:
|
|
- name: setup
|
|
image: node:22-alpine
|
|
commands:
|
|
- apk update && apk add git
|
|
- npm i typescript -g
|
|
- npm install
|
|
- echo '✅ success setup project'
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
- name: build-src
|
|
image: node:22-alpine
|
|
environment:
|
|
NODE_ENV: prod
|
|
commands:
|
|
- npm i typescript -g
|
|
- npm run build:production
|
|
- echo '✅ success compile typescript and ready to deploy'
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
- name: deploy
|
|
image: docker
|
|
commands:
|
|
- docker builder prune -f
|
|
- docker container prune -f
|
|
- docker-compose build
|
|
- docker-compose up -d --no-deps --build --remove-orphans
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
when:
|
|
branch:
|
|
- master
|