This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
leviolson
/
website
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
adding stages to deployment scripts
pull/2/head
Levi Olson
6 years ago
parent
999144e0bc
commit
8852861e5f
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
.gitlab-ci.yml
+ 6
- 0
.gitlab-ci.yml
View File
@ -7,16 +7,22 @@ cache:
paths:
-
node_modules/
stages:
-
test
-
deploy
before_script:
-
apt-get update -qq && apt-get install -y -qq sshpass
test_coverage:
stage
:
test
script:
-
npm install
-
npm install --global mocha nyc
-
npm run coverage
deploy_prod:
stage
:
deploy
script:
-
echo "Deploying to Production"
-
npm install
Write
Preview
Loading…
Cancel
Save