-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest-workflow.ts
34 lines (28 loc) · 1.26 KB
/
test-workflow.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/******************************************************************************
* This file is used with workflow.yml is running without errors and usage data
* is sent to the DVC test org.
*
* https://app.devcycle.com/o/org_U9F8YMaTChTEndWw/p/default/variables
******************************************************************************/
// @ts-nocheck
import { initialize } from '@devcycle/devcycle-js-sdk'
// The user object needs either a user_id, or isAnonymous set to true
const user = { user_id: 'my_user' }
let dvcClient
try {
// Call initialize with the client key and a user object
// await on the features to be loaded from our servers
dvcClient = await initialize('client-123', user)
.onClientInitialized()
useDVCVariable()
} catch(ex) {
console.log('Error initializing DVC: ${ex}')
}
function useDVCVariable() {
if (!dvcClient) return
// Fetch variable values using the identifier key coupled with a default value
// The default value can be of type string, boolean, number, or object
const dvcVariableNumber = dvcClient.variable('gha-ff-code-usages', 10)
const dvcVariableString = dvcClient.variable('gha-ff-code-usages-string', '10')
const dvcVariableJson = dvcClient.variable('gha-ff-code-usages-json', {})
}