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 d458e02 commit 0329978Copy full SHA for 0329978
.github/workflows/CI-time-tracker-ui.yml
@@ -30,6 +30,11 @@ jobs:
30
name: Running unit tests
31
runs-on: ubuntu-latest
32
timeout-minutes: 90
33
+ env:
34
+ SCOPES: {{ $secrets.scopes }}
35
+ CLIENT_ID: {{ $secrets.client_id }}
36
+ AUTHORITY: {{ $secrets.authority }}
37
+ BASE_PATH: "src/environments/"
38
steps:
39
- name: Clone and checkout branch
40
uses: actions/checkout@master
@@ -56,11 +61,6 @@ jobs:
56
61
data["authority"] = os.environ['AUTHORITY']
57
62
with open(base_path + "keys.json", "w+") as jsonFileWrite:
58
63
json.dump(data, jsonFileWrite)
59
- env:
60
- SCOPES: {{ $secrets.scopes }}
- CLIENT_ID: {{ $secrets.client_id }}
- AUTHORITY: {{ $secrets.authority }}
- BASE_PATH: "src/environments/"
64
-
+
65
- name: Run the test
66
run: npm run ci-test --if-present
0 commit comments