We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892c055 commit 257055dCopy full SHA for 257055d
.github/workflows/CI-mutation-tests.yml
@@ -34,9 +34,9 @@ jobs:
34
import os
35
base_path = os.environ.get('BASE_PATH', 'src/environments/')
36
with open(base_path + "keys.ts", "w") as fileWithKeys:
37
- fileWithKeys.write('export const AUTHORITY = ') + str(os.environ['SCOPES']).split(",") + ';';
+ fileWithKeys.write('export const SCOPES = ') + str(os.environ['SCOPES']).split(",") + ';';
38
fileWithKeys.write('\nexport const CLIENT_ID = ' + os.environ['CLIENT_ID']) + ';';
39
- fileWithKeys.write('\nexport const SCOPES = ' + os.environ['AUTHORITY']) + ';';
+ fileWithKeys.write('\nexport const AUTHORITY = ' + os.environ['AUTHORITY']) + ';';
40
41
- name: Run the test
42
run: npm run ci-test --if-present
0 commit comments