DAPP1-17: added wallet view #20
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
continuous_integration: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout code 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
clean: true | |
- name: Set Node Version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.13.1 | |
- name: Install Packages | |
run: npm install | |
- name: Run Lint Report | |
run: npm run lintreport | |
- name: Run Test Coverage | |
run: npm run coverage |