File tree Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,26 @@ jobs:
22
22
steps :
23
23
- name : Checkout
24
24
uses : actions/checkout@v3
25
+
25
26
- name : Setup node
26
27
uses : actions/setup-node@v3
27
28
with :
28
29
node-version : 20
29
- - run : yarn
30
- - run : TESTS_USE_MOCKNET=true yarn test -- -- --coverage --coverageProvider=v8
31
- - run : yarn lint
32
- - run : yarn spellcheck
30
+
31
+ - name : Install dependencies
32
+ run : yarn
33
+
34
+ - name : Run tests
35
+ run : TESTS_USE_MOCKNET=true yarn test -- -- --coverage --coverageProvider=v8
36
+
37
+ - name : Run linter
38
+ run : yarn lint
39
+
40
+ - name : Run spellchecker
41
+ run : yarn spellcheck
42
+
43
+ - name : Upload coverage reports to Codecov
44
+ uses : codecov/codecov-action@v5
45
+ with :
46
+ token : ${{ secrets.CODECOV_TOKEN }}
47
+ slug : CashScript/cashscript
You can’t perform that action at this time.
0 commit comments