Files
Frontend/.gitlab-ci.yml
AmirHossein Mahmoodi 99782ad72d Update .gitlab-ci.yml file
2023-10-15 08:35:59 +00:00

98 lines
1.2 KiB
YAML

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