-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
105 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,19 @@ jobs: | |
uses: actions/[email protected] | ||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
- uses: actions/[email protected] | ||
with: | ||
# unittests needs 3.1 | ||
dotnet-version: '3.1.x' | ||
- uses: actions/[email protected] | ||
with: | ||
# gitversion needs 5.0 | ||
dotnet-version: '5.0.x' | ||
- uses: actions/[email protected] | ||
with: | ||
# need .NET 6 rc2 to build | ||
dotnet-version: '6.0.x' | ||
include-prerelease: true | ||
- name: Cache Tools | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -61,15 +74,15 @@ jobs: | |
cake-version: 0.38.5 | ||
cake-bootstrap: true | ||
- name: Upload Issues | ||
uses: actions/[email protected].3 | ||
uses: actions/[email protected].4 | ||
with: | ||
if-no-files-found: warn | ||
name: ${{ matrix.os }} Issues | ||
path: | | ||
BuildArtifacts/report.html | ||
BuildArtifacts/**/coverlet/*.xml | ||
- name: Upload Packages | ||
uses: actions/[email protected].3 | ||
uses: actions/[email protected].4 | ||
if: runner.os == 'Windows' | ||
with: | ||
if-no-files-found: warn | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,19 @@ jobs: | |
uses: actions/[email protected] | ||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
- uses: actions/[email protected] | ||
with: | ||
# unittests needs 3.1 | ||
dotnet-version: '3.1.x' | ||
- uses: actions/[email protected] | ||
with: | ||
# gitversion needs 5.0 | ||
dotnet-version: '5.0.x' | ||
- uses: actions/[email protected] | ||
with: | ||
# need .NET 6 rc2 to build | ||
dotnet-version: '6.0.x' | ||
include-prerelease: true | ||
- name: Cache Tools | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,6 @@ | |
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"eslint": "7.28.0" | ||
"eslint": "8.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,6 @@ | |
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"eslint": "7.28.0" | ||
"eslint": "8.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<a class="github-button" href="https://github.com/cake-contrib/Cake.ESLint" target="_blank"> | ||
<i class="fa fa-github"></i> | ||
GitHub | ||
</a> | ||
<a class="discussion-button" href="https://github.com/cake-build/cake/discussions" target="_blank"> | ||
<i class="fa fa-github"></i> | ||
Discussion | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* For GitHub */ | ||
.bottom-footer { | ||
margin-bottom: 40px !important; // Make room for GitHub buttons | ||
} | ||
|
||
.github-button, | ||
.discussion-button { | ||
z-index: 100; | ||
position: fixed; | ||
bottom: 0px; | ||
padding: 1em 3em; | ||
background-color: #367fa9; | ||
border: 0; | ||
border-top-left-radius: 0.5em; | ||
border-top-right-radius: 0.5em; | ||
font-family: sans-serif; | ||
font-size: 9pt; | ||
text-transform: uppercase; | ||
text-align: center; | ||
text-decoration: none; | ||
cursor: pointer; | ||
cursor: hand; | ||
-webkit-transition: all .3s ease; | ||
transition: all .3s ease; | ||
color: #fff; | ||
a, a:active, a:hover, a:focus { | ||
color: #fff; | ||
} | ||
} | ||
|
||
.github-button { | ||
right: 255px; | ||
} | ||
|
||
.discussion-button { | ||
right: 80px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"sdk": { | ||
"allowPrerelease": true, | ||
"version": "6.0.100-rc.2", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 2 additions & 16 deletions
18
src/Cake.ESLint.Tests/ESLintAliasesTests.Runs_tool_with_given_action.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,10 @@ | ||
{ | ||
Path: { | ||
FullPath: /Working/tools/eslint, | ||
Separator: "/", | ||
Segments: [ | ||
/Working, | ||
tools, | ||
eslint | ||
] | ||
}, | ||
Path: /Working/tools/eslint, | ||
Process: { | ||
Arguments: [ | ||
{} | ||
], | ||
WorkingDirectory: { | ||
FullPath: /Working, | ||
Separator: "/", | ||
Segments: [ | ||
/Working | ||
] | ||
} | ||
WorkingDirectory: /Working | ||
}, | ||
Args: "**/*" | ||
} |
20 changes: 3 additions & 17 deletions
20
src/Cake.ESLint.Tests/ESLintAliasesTests.Runs_tool_with_given_settings.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,7 @@ | ||
{ | ||
Path: { | ||
FullPath: /Working/tools/eslint, | ||
Separator: "/", | ||
Segments: [ | ||
/Working, | ||
tools, | ||
eslint | ||
] | ||
}, | ||
{ | ||
Path: /Working/tools/eslint, | ||
Process: { | ||
WorkingDirectory: { | ||
FullPath: /Working, | ||
Separator: "/", | ||
Segments: [ | ||
/Working | ||
] | ||
} | ||
WorkingDirectory: /Working | ||
}, | ||
Args: | ||
} |
20 changes: 3 additions & 17 deletions
20
src/Cake.ESLint.Tests/ESLintAliasesTests.Runs_tool_with_no_settings.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,7 @@ | ||
{ | ||
Path: { | ||
FullPath: /Working/tools/eslint, | ||
Separator: "/", | ||
Segments: [ | ||
/Working, | ||
tools, | ||
eslint | ||
] | ||
}, | ||
{ | ||
Path: /Working/tools/eslint, | ||
Process: { | ||
WorkingDirectory: { | ||
FullPath: /Working, | ||
Separator: "/", | ||
Segments: [ | ||
/Working | ||
] | ||
} | ||
WorkingDirectory: /Working | ||
}, | ||
Args: | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters