Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#58 CI strykey
  • Loading branch information
enriquezrene committed Apr 9, 2020
commit 257055d18404d5576d985df19f0bebc3c51df1b3
4 changes: 2 additions & 2 deletions .github/workflows/CI-mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
import os
base_path = os.environ.get('BASE_PATH', 'src/environments/')
with open(base_path + "keys.ts", "w") as fileWithKeys:
fileWithKeys.write('export const AUTHORITY = ') + str(os.environ['SCOPES']).split(",") + ';';
fileWithKeys.write('export const SCOPES = ') + str(os.environ['SCOPES']).split(",") + ';';
fileWithKeys.write('\nexport const CLIENT_ID = ' + os.environ['CLIENT_ID']) + ';';
fileWithKeys.write('\nexport const SCOPES = ' + os.environ['AUTHORITY']) + ';';
fileWithKeys.write('\nexport const AUTHORITY = ' + os.environ['AUTHORITY']) + ';';

- name: Run the test
run: npm run ci-test --if-present
Expand Down