Skip to content

Commit eb5a6a0

Browse files
committed
fix syntax errors
1 parent 3146cb7 commit eb5a6a0

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff 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
@@ -40,4 +43,4 @@ jobs:
4043
run: npm test
4144

4245
- name: Build extension
43-
run: npm run build
46+
run: npm run build

0 commit comments

Comments
 (0)