-
Notifications
You must be signed in to change notification settings - Fork 17
55 lines (46 loc) · 1.24 KB
/
pull_request.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
50
51
52
53
54
55
name: Pull request verify workflow
on:
# Trigger the workflow on push or pull request,
# but only for the default(main) branch
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, labeled, synchronize, ready_for_review]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Run Build Check
run: npm run build
- name: Run Lint Check
run: npm run lint
- name: Annotate Checks
uses: agyemanjp/ci-checks-action@2.0.3
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
checks: '[
{
"name": "build",
"fileName": ".build-report.json",
"prChangesOnly": true
},
{
"name": "lint",
"fileName": ".lint-report.json",
"prChangesOnly": true
}
]'