From 6c99a545182d91017dfaf76abc560363c4f55b66 Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 14:56:51 -0500 Subject: [PATCH 1/6] Intentionally break file to check CI --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 8ed3a66..cb5a8e6 100644 --- a/test.js +++ b/test.js @@ -222,7 +222,7 @@ function makeTests(str, humps) { it('converts hyphenated strings to camelcase', function() { assert.equal(humps.camelize('hello-world', '-'), 'helloWorld'); - assert.equal(humps.camelize('hello-world-1', '-'), 'helloWorld1'); + assert.equal(humps.camelize('hello-world-1', '-'), 'helloWorld12'); }); it('converts space-separated strings to camelcase', function() { From 4e595874351d49a791a01f52350bdaf482c02ae7 Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 18:37:17 -0500 Subject: [PATCH 2/6] Revert "Intentionally break file to check CI" This reverts commit 6c99a545182d91017dfaf76abc560363c4f55b66. --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index cb5a8e6..8ed3a66 100644 --- a/test.js +++ b/test.js @@ -222,7 +222,7 @@ function makeTests(str, humps) { it('converts hyphenated strings to camelcase', function() { assert.equal(humps.camelize('hello-world', '-'), 'helloWorld'); - assert.equal(humps.camelize('hello-world-1', '-'), 'helloWorld12'); + assert.equal(humps.camelize('hello-world-1', '-'), 'helloWorld1'); }); it('converts space-separated strings to camelcase', function() { From e6ef4af0020f5641bc4a524230f3060821085baa Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 18:40:40 -0500 Subject: [PATCH 3/6] Test cache --- .drone.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 009aacf..f5ce5bb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,11 @@ +cache: + mount: + - node_modules + pipeline: build: image: node:6 commands: - npm install - - npm test \ No newline at end of file + - npm test + - node benchmark.js \ No newline at end of file From 1847070abe8ce6d94a8cd857d2d103c614e8538b Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 18:41:55 -0500 Subject: [PATCH 4/6] Update yml --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index f5ce5bb..c08d551 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,4 +8,4 @@ pipeline: commands: - npm install - npm test - - node benchmark.js \ No newline at end of file + - node benchmark.js From 55b6d90c25aaabdc2d83e227a03d58c21d75b5da Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 18:45:48 -0500 Subject: [PATCH 5/6] Update yml --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index c08d551..5711bac 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,7 +1,3 @@ -cache: - mount: - - node_modules - pipeline: build: image: node:6 @@ -9,3 +5,7 @@ pipeline: - npm install - npm test - node benchmark.js + +cache: + mount: + - node_modules \ No newline at end of file From 06ab7949fed823c9ed4914f78f323f9d9c50dc37 Mon Sep 17 00:00:00 2001 From: Damian Kaczmarek Date: Thu, 14 Sep 2017 18:46:30 -0500 Subject: [PATCH 6/6] Disable cache --- .drone.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5711bac..0fef112 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,7 +5,3 @@ pipeline: - npm install - npm test - node benchmark.js - -cache: - mount: - - node_modules \ No newline at end of file