Files
Frontend/.gitlab-ci.yml
AmirHossein Mahmoodi df947537e4 Update .gitlab-ci.yml file
2023-10-15 11:18:14 +03:30

26 lines
375 B
YAML

image: node:latest
stages:
- build
- test
build:
stage: build
script:
- npm install
- npm run build
only:
- merge_requests
artifacts:
paths:
- node_modules
test:
stage: test
script:
- npm run test
only:
- merge_requests
artifacts:
paths:
- node_modules