Skip to content

Commit 1634426

Browse files
authored
Adds GraphQL Query Conventions (#6846)
1 parent e2308ce commit 1634426

File tree

528 files changed

+4966
-455462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

528 files changed

+4966
-455462
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,6 @@ jobs:
183183
7.x
184184
8.x
185185
186-
- uses: actions/cache@v3
187-
with:
188-
path: ~/.nuget/packages
189-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
190-
restore-keys: |
191-
${{ runner.os }}-nuget-
192-
193186
- name: Run Build
194187
id: run-build
195188
run: dotnet build ${{ matrix.path }} --framework net7.0 --verbosity q --property WarningLevel=0
@@ -311,13 +304,6 @@ jobs:
311304
7.x
312305
8.x
313306
314-
- uses: actions/cache@v3
315-
with:
316-
path: ~/.nuget/packages
317-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
318-
restore-keys: |
319-
${{ runner.os }}-nuget-
320-
321307
- name: Restore
322308
run: ./build.sh restore
323309

@@ -350,14 +336,6 @@ jobs:
350336
7.x
351337
8.x
352338
353-
- uses: actions/cache@v3
354-
if: ${{ !cancelled() }}
355-
with:
356-
path: ~/.nuget/packages
357-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
358-
restore-keys: |
359-
${{ runner.os }}-nuget-
360-
361339
- name: Create All.sln
362340
if: ${{ !cancelled() }}
363341
run: ./build.sh CreateAllSln

.github/workflows/coverage.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,6 @@ jobs:
5858
7.x
5959
8.x
6060
61-
- uses: actions/cache@v3
62-
with:
63-
path: ~/.nuget/packages
64-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
65-
restore-keys: |
66-
${{ runner.os }}-nuget-
67-
6861
- name: Run Build
6962
id: run-build
7063
run: dotnet build ${{ matrix.path }} --framework net7.0 --verbosity q --property WarningLevel=0
@@ -128,14 +121,6 @@ jobs:
128121
7.x
129122
8.x
130123
131-
- uses: actions/cache@v3
132-
if: ${{ !cancelled() }}
133-
with:
134-
path: ~/.nuget/packages
135-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
136-
restore-keys: |
137-
${{ runner.os }}-nuget-
138-
139124
- name: Create All.sln
140125
if: ${{ !cancelled() }}
141126
run: ./build.sh CreateAllSln

.github/workflows/release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@ jobs:
2424
id: get_version
2525
run: echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
2626

27-
- uses: actions/cache@v3
28-
with:
29-
path: ~/.nuget/packages
30-
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
31-
restore-keys: |
32-
${{ runner.os }}-nuget-
33-
3427
- name: Build Packages
3528
run: |
3629
./build.sh pack --SemVersion ${{ env.GIT_TAG }} --Configuration Release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,3 +323,4 @@ conferences.db-wal
323323
.server/
324324
.nuke/
325325
.mono/
326+
packages.lock.json

src/CookieCrumble/src/CookieCrumble/Extensions/SnapshotExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void MatchInlineSnapshot(
1515

1616
public static void MatchSnapshot(this Snapshot value)
1717
=> value.Match();
18-
18+
1919
public static void MatchSnapshot(
2020
this object? value,
2121
object? postFix = null,

0 commit comments

Comments
 (0)