Files
Frontend/.gitlab-ci.yml
AmirHossein Mahmoodi 2a2be7615c Update .gitlab-ci.yml file
2023-10-15 08:12:14 +00:00

61 lines
823 B
YAML

image: node:latest
stages:
- build
- test
- deploy
merge:build:
stage: build
script:
- echo "Run build project"
- npm install
- npm run build
only:
- merge_requests
artifacts:
paths:
- node_modules
merge:test:
stage: test
script:
- echo "Run test project"
- npm run test
only:
- merge_requests
artifacts:
paths:
- node_modules
build:
stage: build
script:
- echo "Run build project"
- npm install
- npm run build
only:
- develop
- main
artifacts:
paths:
- node_modules
test:
stage: test
script:
- echo "Run test project"
- npm run test
only:
- develop
- main
artifacts:
paths:
- node_modules
deploy:
stage: deploy
script:
- echo "Run deploy project"
only:
- main