Adding solidity code coverage for tests and writing some tests relate… #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smart Contract Deploy | |
on: | |
push: | |
paths: | |
- blockchain/** | |
- .github/workflows/blockchain.yml | |
env: | |
VITE_VUE_APP_API_URL: "" | |
jobs: | |
deploy-development: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 20 | |
defaults: | |
run: | |
working-directory: blockchain/ | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install NPM dependencies | |
run: npm install --force | |
- name: Run tests | |
run: npm run test | |
- name: Run tests coverage | |
run: npm run coverage | |
- name: Run ESLint Check Code Quality | |
run: npm run lint | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |