File tree Expand file tree Collapse file tree 3 files changed +17
-97
lines changed
Expand file tree Collapse file tree 3 files changed +17
-97
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,22 +17,24 @@ jobs:
1717 - name : Check the repository
1818 uses : actions/checkout@v2
1919
20- - name : Validate
21- uses : ./.github/actions/validate
20+ # Sets up Libindy.
21+ - name : Setup Libindy
22+ uses : ./.github/actions/setup-libindy
23+
24+ # Setup Node.js
25+ - name : Setup Node.js
26+ uses : actions/setup-node@v2
2227 with :
2328 node-version : 16.x
24- uses-libindy : true
2529
26- test :
27- name : Test
28- needs : validate
29- runs-on : ubuntu-20.04
30+ # Installing the project dependencies
31+ - name : Install dependencies
32+ run : yarn install
3033
31- steps :
32- - name : Check the repository
33- uses : actions/checkout@v2
34- - name : Test
35- uses : ./.github/actions/test
36- with :
37- node-version : 16.x
38- uses-libindy : true
34+ # Validation
35+ - name : Running `yarn validate`
36+ run : yarn validate
37+
38+ # Run the tests
39+ - name : Run tests with coverage
40+ run : yarn test --coverage
You can’t perform that action at this time.
0 commit comments