File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,17 +10,20 @@ jobs:
1010 if : |
1111 github.event.issue.pull_request &&
1212 contains(github.event.comment.body, 'run tests') &&
13- (github.event.comment.author_association == 'OWNER' ||
14- github.event.comment.author_association == 'MEMBER') ||
15- github.event.comment.author_association == 'COLLABORATOR')
13+ (
14+ github.event.comment.author_association == 'OWNER' ||
15+ github.event.comment.author_association == 'MEMBER' ||
16+ github.event.comment.author_association == 'COLLABORATOR'
17+ )
18+
1619 runs-on : ubuntu-latest
1720
1821 strategy :
1922 matrix :
2023 node-version : [18, 20]
2124
2225 steps :
23- - name : Get PR branch
26+ - name : Checkout PR branch
2427 uses : actions/checkout@v4
2528 with :
2629 ref : refs/pull/${{ github.event.issue.number }}/head
4043 run : npm test
4144
4245 - name : Build extension
43- run : npm run build
46+ run : npm run build
You can’t perform that action at this time.
0 commit comments