-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (47 loc) · 1.4 KB
/
check-build-and-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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'