Skip to content

Add read me to Serilog.UI.PostgreSqlProvider.nuspec file. #35

Add read me to Serilog.UI.PostgreSqlProvider.nuspec file.

Add read me to Serilog.UI.PostgreSqlProvider.nuspec file. #35

Workflow file for this run

# ------------------------------------------------------------------------------
# <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/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') }}
- name: Run './build.cmd 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@v2
if: always()
with:
name: test-results
path: '**/jest-*.xml'