Skip to content

Commit 0169303

Browse files
committed
#58 CI strykey
1 parent 3c88c5b commit 0169303

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CI-mutation-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
import os
3535
base_path = os.environ.get('BASE_PATH', 'src/environments/')
3636
with open(base_path + "keys.ts", "w") as fileWithKeys:
37-
scopes = str(os.environ['SCOPES']).split(",")
37+
scopes = os.environ['SCOPES']
3838
client_id = os.environ['CLIENT_ID']
3939
authority = os.environ['AUTHORITY']
40-
fileWithKeys.write(f'export const SCOPES = {scopes};')
41-
fileWithKeys.write(f'\nexport const CLIENT_ID = {client_id};')
42-
fileWithKeys.write(f'\nexport const AUTHORITY = {authority};')
40+
fileWithKeys.write(f'export const SCOPES = ["{scopes}"];')
41+
fileWithKeys.write(f'\nexport const CLIENT_ID = "{client_id}";')
42+
fileWithKeys.write(f'\nexport const AUTHORITY = "{authority}";')
4343
4444
- name: Run the test
4545
run: npm run ci-test --if-present

0 commit comments

Comments
 (0)