-
-
Notifications
You must be signed in to change notification settings - Fork 25
43 lines (34 loc) · 1007 Bytes
/
pr-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
name: PR Test
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- uses: pnpm/[email protected]
with:
version: 8.7.1
- name: Install dependencies
run: pnpm install --frozen-lockfile
- uses: jwalton/gh-find-current-pr@v1
id: findPr
- name: jest coverage report
uses: ArtiomTr/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
prnumber: ${{ steps.findPr.outputs.number }}
- name: Check test status
id: test-status
run: echo "::set-output name=status::$(if grep -q 'Test failed' test-results.txt; then echo 'failure'; else echo 'success'; fi)"