CU-86a1927yc - Githook for push: rush change --verify #61
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: Check Build and Test | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
NODE_VERSION: 16.x | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node Version ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install PNPM | |
run: npm install -g pnpm | |
- name: Install RushJS | |
run: npm install -g @microsoft/rush | |
- name: Verify Change Logs | |
run: rush change --verify | |
- name: Install Dependencies | |
run: rush update | |
- name: Build Projects | |
run: rush rebuild --verbose | |
- name: Run Tests | |
run: cd packages/neon-dappkit && pnpm test | |
- name: Notify Test Reporter | |
uses: dorny/[email protected] | |
with: | |
name: Unit Tests | |
reporter: mocha-json | |
path: mocha-results.json | |
fail-on-error: true | |
- name: Check Code Coverage | |
continue-on-error: true | |
working-directory: ./packages/neon-dappkit/ | |
run: pnpm coverage | |
- name: Notify Code Coverage | |
uses: sidx1024/[email protected] | |
with: | |
coverage_file: './packages/neon-dappkit/reporter/coverage-summary.json' | |
comment_template_file: '.github/comment-template.md' |