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 618912e commit 222dedbCopy full SHA for 222dedb
.github/workflows/tests.yml
@@ -8,24 +8,25 @@ on:
8
9
jobs:
10
tests:
11
+ name: Portal Unit Tests
12
runs-on: ubuntu-latest
13
14
steps:
15
- name: Repo Checkout
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v2
17
18
- name: Setup Node
19
uses: actions/setup-node@v1
20
with:
21
node-version: 14
22
23
- name: Setup Portal
- working-directory: ./trainingportal
24
- run: |
25
- npm install
26
- config.json.docker config.json
27
- tools/devSetup.js
28
-
+ working-directory: ./trainingportal
+ run: |
+ npm install
+ config.json.docker config.json
+ tools/devSetup.js
29
+
30
- name: Run Tests
31
- run: npm test
32
+ run: npm test
0 commit comments