Skip to content

Commit 7bae062

Browse files
Reformat workflow syntax
1 parent ad8bcf2 commit 7bae062

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/security-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Security Scan
22

33
on:
44
push:
5-
branches: [ develop, main ]
5+
branches: [main, develop]
66
pull_request:
7-
branches: [ develop, main ]
7+
branches: [main, develop]
88
schedule:
99
# 13:44 on Saturdays
1010
- cron: '44 13 * * 6'
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
language: [ 'javascript' ]
21+
language: ['javascript']
2222

2323
steps:
2424
- name: Checkout repository

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [main, develop]
66
pull_request:
7-
branches: [ main, develop ]
7+
branches: [main, develop]
88
schedule:
99
# 00:00 on Saturdays
10-
- cron: '0 0 * * SAT'
10+
- cron: '0 0 * * SAT'
1111
workflow_dispatch:
1212

1313
jobs:

0 commit comments

Comments
 (0)