Skip to content

Commit

Permalink
feat(v3): new UI application, additional columns option
Browse files Browse the repository at this point in the history
  • Loading branch information
followynne authored Aug 10, 2024
1 parent 84fa46e commit 39d8083
Show file tree
Hide file tree
Showing 479 changed files with 81,217 additions and 59,310 deletions.
126 changes: 126 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"projectName": "serilog-ui",
"projectOwner": "serilog-contrib",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 60,
"commitConvention": "angular",
"contributors": [
{
"login": "mo-esmp",
"name": "Mohsen Esmailpour",
"avatar_url": "https://avatars.githubusercontent.com/u/1659032?v=4",
"profile": "https://stackoverflow.com/users/1385614/mohsen-esmailpour",
"contributions": [
"code",
"projectManagement",
"test"
]
},
{
"login": "followynne",
"name": "Matteo Gregoricchio",
"avatar_url": "https://avatars.githubusercontent.com/u/32459930?v=4",
"profile": "https://www.matteogregoricchio.com/",
"contributions": [
"code",
"doc",
"test"
]
},
{
"login": "sommmen",
"name": "sommmen",
"avatar_url": "https://avatars.githubusercontent.com/u/8641495?v=4",
"profile": "https://github.com/sommmen",
"contributions": [
"code"
]
},
{
"login": "igece",
"name": "Israel Gómez de Celis",
"avatar_url": "https://avatars.githubusercontent.com/u/2063980?v=4",
"profile": "http://igecelabs.net/",
"contributions": [
"code"
]
},
{
"login": "traien",
"name": "Osama Bashir",
"avatar_url": "https://avatars.githubusercontent.com/u/16708328?v=4",
"profile": "https://github.com/traien",
"contributions": [
"code"
]
},
{
"login": "ricardodemauro",
"name": "Ricardo",
"avatar_url": "https://avatars.githubusercontent.com/u/3687018?v=4",
"profile": "https://rmauro.dev/",
"contributions": [
"code"
]
},
{
"login": "hansoncaleb",
"name": "Caleb Hanson",
"avatar_url": "https://avatars.githubusercontent.com/u/8008108?v=4",
"profile": "https://github.com/hansoncaleb",
"contributions": [
"code"
]
},
{
"login": "Millarex",
"name": "Aleksei",
"avatar_url": "https://avatars.githubusercontent.com/u/55946676?v=4",
"profile": "https://github.com/Millarex",
"contributions": [
"code"
]
},
{
"login": "chaadfh",
"name": "chaadfh",
"avatar_url": "https://avatars.githubusercontent.com/u/133214342?v=4",
"profile": "https://github.com/chaadfh",
"contributions": [
"code"
]
},
{
"login": "phillduffy",
"name": "Phill Duffy",
"avatar_url": "https://avatars.githubusercontent.com/u/710550?v=4",
"profile": "https://github.com/phillduffy",
"contributions": [
"code"
]
},
{
"login": "uthmanrahimi",
"name": "Uthman",
"avatar_url": "https://avatars.githubusercontent.com/u/45357615?v=4",
"profile": "https://github.com/uthmanrahimi",
"contributions": [
"code"
]
},
{
"login": "jorgevp",
"name": "jorgevp",
"avatar_url": "https://avatars.githubusercontent.com/u/3268148?v=4",
"profile": "https://github.com/jorgevp",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 10
}
2 changes: 1 addition & 1 deletion .github/workflows/DotNET-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/DotNET-reporting-on-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: phoenix-actions/test-reporting@v9
with:
artifact: test-results # artifact name
name: DotNET - Tests # Name of the check run which will be created
path: '**/test-results.trx' # Path to test results (inside artifact .zip)
reporter: dotnet-trx # Format of test results
output-to: checks
- uses: phoenix-actions/test-reporting@v14
with:
artifact: test-results # artifact name
name: DotNET - Tests # Name of the check run which will be created
path: '**/test-results.trx' # Path to test results (inside artifact .zip)
reporter: dotnet-trx # Format of test results
output-to: checks
150 changes: 75 additions & 75 deletions .github/workflows/JS-build.yml
Original file line number Diff line number Diff line change
@@ -1,75 +1,75 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [CustomGithubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_JS-build --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: JS-build

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Frontend_Tests_Ci'
run: ./build.cmd Frontend_Tests_Ci
env:
SonarTokenUi: ${{ secrets.SONAR_TOKEN_UI }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: SonarCloud run
uses: SonarSource/sonarcloud-github-action@master
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_UI }}
with:
args: >
-Dsonar.organization=followynne
-Dsonar.projectKey=followynne_serilog-ui_assets
-Dsonar.sources=src/Serilog.Ui.Web/assets/
-Dsonar.tests=src/Serilog.Ui.Web/assets/
-Dsonar.exclusions=src/Serilog.Ui.Web/assets/__tests__/**/*
-Dsonar.test.inclusions=src/Serilog.Ui.Web/assets/__tests__/**/*
-Dsonar.javascript.lcov.reportPaths=./src/Serilog.Ui.Web/coverage/lcov.info
- uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: '**/jest-*.xml'
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [CustomGithubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_JS-build --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: JS-build

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Frontend_Tests_Ci'
run: ./build.cmd Frontend_Tests_Ci
env:
SonarTokenUi: ${{ secrets.SONAR_TOKEN_UI }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: SonarCloud run
uses: SonarSource/sonarcloud-github-action@master
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_UI }}
with:
args: >
-Dsonar.organization=followynne
-Dsonar.projectKey=followynne_serilog-ui_assets
-Dsonar.sources=src/Serilog.Ui.Web/src/
-Dsonar.tests=src/Serilog.Ui.Web/src/
-Dsonar.exclusions=src/Serilog.Ui.Web/src/__tests__/**/*,src/Serilog.Ui.Web/src/mockServiceWorker.*,src/Serilog.Ui.Web/src/style/**/*
-Dsonar.test.inclusions=src/Serilog.Ui.Web/src/__tests__/**/*
-Dsonar.javascript.lcov.reportPaths=./src/Serilog.Ui.Web/src/reports/coverage/lcov.info
- uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: '**/test-junit-report.xml'
14 changes: 7 additions & 7 deletions .github/workflows/JS-reporting-on-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: phoenix-actions/test-reporting@v9
with:
artifact: test-results # artifact name
name: JS - Tests # Name of the check run which will be created
path: '**/jest-*.xml' # Path to test results (inside artifact .zip)
reporter: jest-junit # Format of test results
output-to: checks
- uses: phoenix-actions/test-reporting@v14
with:
artifact: test-results # artifact name
name: JS - Tests # Name of the check run which will be created
path: '**/test-junit-report.xml' # Path to test results (inside artifact .zip)
reporter: jest-junit # Format of test results
output-to: checks
Loading

0 comments on commit 39d8083

Please sign in to comment.