We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684e84f commit a1459e7Copy full SHA for a1459e7
1 file changed
.github/workflows/test-on-comment.yml
@@ -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