We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b5fad commit de1d216Copy full SHA for de1d216
.github/workflows/validate-rules-csv.yml
@@ -0,0 +1,28 @@
1
+name: ⚙️ Validate Rules CSV
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - "rc/**"
8
+ - next
9
+ pull_request:
10
11
12
13
14
15
16
+jobs:
17
+ validate-rules-csv:
18
+ name: Validate Rules CSV
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v2
23
24
+ - name: Check Rules
25
+ shell: pwsh
26
+ run: scripts/util/Get-DuplicateRules.ps1 -Language 'all' -CIMode
27
28
0 commit comments