Skip to content
Snippets Groups Projects
Commit d5b6f5b2 authored by s87777's avatar s87777
Browse files

ci cd pipeline

parent d4d14bee
No related branches found
No related tags found
No related merge requests found
Pipeline #47261 failed
image: node:latest
stages:
- build
- test
cache:
paths:
- node_modules/
build_react_app:
stage: build
services:
- selenium/standalone-chrome
script:
- npm install
- npm run build
- npm run confidence-check --host=selenium__standalone-chrome
artifacts:
expire_in: 1 hour
paths:
- build
- node_modules/
test-react-app:
stage: test
needs: [build_react_app]
services:
- selenium/standalone-chrome
script:
- npm start
- npm test --host=selenium__standalone-chrome
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment