Skip to content

Commit 444c21a

Browse files
committed
CI(sanitycheck): move commit1by1 check later
Because it's the one more likely to break when working on a PR (WIP commits all around).
1 parent 31768d2 commit 444c21a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,6 @@ jobs:
211211
run: dotnet fsi scripts/unpinnedNugetPackageReferenceVersionsInFSharpScripts.fsx
212212
- name: Check there are no unpinned versions in `dotnet tool install` commands
213213
run: dotnet fsi scripts/unpinnedDotnetToolInstallVersions.fsx
214-
- name: Check commits 1 by 1
215-
if: github.event_name == 'pull_request'
216-
run: dotnet fsi scripts/checkCommits1by1.fsx
217214
- name: Check there are no inconsistent versions GitHubCI files
218215
run: dotnet fsi scripts/inconsistentVersionsInGitHubCI.fsx
219216
- name: Check there are no inconsistent versions in nuget package references of F# scripts
@@ -238,6 +235,9 @@ jobs:
238235
dotnet tool install fantomless-tool --version 4.7.997-prerelease
239236
dotnet fantomless --recurse .
240237
git diff --exit-code
238+
- name: Check commits 1 by 1
239+
if: github.event_name == 'pull_request'
240+
run: dotnet fsi scripts/checkCommits1by1.fsx
241241

242242
- name: Install commitlint&prettier's required dependencies
243243
run: |

0 commit comments

Comments
 (0)