We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e8795 commit 397bdf5Copy full SHA for 397bdf5
3 files changed
circle.yml
@@ -15,5 +15,5 @@ dependencies:
15
16
test:
17
override:
18
- - ./scripts/node-matrix.sh ./scripts/prepare.sh ./scripts/test-unit.sh ./scripts/test-e2e.sh:
+ - ./scripts/node-matrix.sh ./scripts/prepare.sh ./scripts/lint.sh ./scripts/test-unit.sh ./scripts/test-e2e.sh:
19
parallel: true
lib/agent/metrics/apm/index.js
@@ -111,7 +111,6 @@ ApmMetrics.prototype._nanoToMilli = function (value) {
111
return Math.floor(value / NANO_TO_MILLI)
112
}
113
114
-
115
ApmMetrics.prototype.getEventLoop = function () {
116
var stats = eventLoopStats.sense()
117
return {
scripts/lint.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+set -e
3
+source $PROJECT_ROOT/scripts/nvm.sh
4
+
5
+nvm use $NODE_VERSION
6
7
+npm run lint
0 commit comments