Skip to content

Commit

Permalink
Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunomiac committed Apr 22, 2024
1 parent c48bce4 commit 6fe12b8
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Unnecessary
.EXAMPLES&REFERENCE/
traceResolution.txt
\!archive/
public/packs/
dist/index.html
dist/index.js
eunos-blades/

# IDE
# dist/

.idea/
.vs/
.vscode/
.status-reports/
*.cpuprofile
*.log
*.code-workspace
*.tmp
tsdocs/
*.temp
*.js.map
.yarn/
# .gitignore
.npmignore
.eslintignore
*prettier*
stylelint.config.js
# .github/
.live-css.config.js
module_staging_1/
.scannerwork/
# .sonarlintignore
.eslintcache
*.ps1
*ProcessID.txt
.cursorignore
.gitattributes
.stylelintignore
# sonar-project.properties

# Node Modules
node_modules/
npm-debug.log
.dev-refs/
eunos-blades.zip
1 change: 1 addition & 0 deletions .sonarlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data-import/**
19 changes: 19 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
sonar.projectKey=Eunomiac_eunos-blades
sonar.organization=eunomiac

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=eunos-blades
sonar.projectVersion=0.1


# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=.

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8

# Inclusions: SonarCloud & SonarLint will ONLY scan matching files
sonar.inclusions=**/*.ts,**/*.d.ts,**/*.scss,**/*.hbs

# Exclusions: SonarCloud & SonarLint will not scan matching files:
sonar.exclusions=**/data-import/**

0 comments on commit 6fe12b8

Please sign in to comment.