Skip to content

Commit 29182c4

Browse files
Fixed branch names in test.yml
1 parent f733f04 commit 29182c4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: Run all tests
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- name: Check out code
16+
uses: actions/checkout@v2
1617

1718
- name: Install Node.js
1819
uses: actions/setup-node@v3
@@ -35,4 +36,4 @@ jobs:
3536
with:
3637
name: playwright-report
3738
path: playwright-report/
38-
retention-days: 30
39+
retention-days: 30

0 commit comments

Comments
 (0)