Files
Frontend/.gitlab-ci.yml
AmirHossein Mahmoodi 4cabe9d171 Update .gitlab-ci.yml file
2023-10-14 13:09:21 +00:00

24 lines
300 B
YAML

image: node:latest
stages:
- build
- test
before_script:
- npm install
build:
stage: build
script:
- echo "Run build project"
- npm run build
only:
- merge_requests
test:
stage: test
script:
- echo "Run test project"
- npm run test
only:
- merge_requests