We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 411175a commit 08790b6Copy full SHA for 08790b6
1 file changed
.github/workflows/github-actions.yml
@@ -22,11 +22,26 @@ jobs:
22
steps:
23
- name: Checkout
24
uses: actions/checkout@v3
25
+
26
- name: Setup node
27
uses: actions/setup-node@v3
28
with:
29
node-version: 20
- - run: yarn
30
- - run: TESTS_USE_MOCKNET=true yarn test -- -- --coverage --coverageProvider=v8
31
- - run: yarn lint
32
- - run: yarn spellcheck
+ - name: Install dependencies
+ 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
0 commit comments