ExodusMovement / cryptocompare

CryptoCompare JavaScript API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add API_KEY to CI environment

RyanZim opened this issue · comments

Need to have an API key on the CI server in order to run some tests there. Relevant code:

const API_KEY = process.env.API_KEY
if (API_KEY) {
test('setup', t => {
cc.setApiKey(process.env.API_KEY)
t.end()
})
}