Skip to content

Commit a1459e7

Browse files
committed
test
1 parent 684e84f commit a1459e7

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: PR Test on Comment
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
test:
9+
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, 'test again')
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 22
18+
19+
- run: pnpm install
20+
- run: pnpm test

0 commit comments

Comments
 (0)