Updated add to cart test for smart contract #15
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: Check typing problem on code | |
run: npx eslint --fix . | |
- name: Format solidity code | |
run: npx prettier --write "**/*.sol" | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |