]> source.dussan.org Git - sonarqube.git/commit
SONAR-14590 Adding GitHub Action tutorial
authorMathieu Suen <mathieu.suen@sonarsource.com>
Fri, 19 Mar 2021 14:56:31 +0000 (15:56 +0100)
committersonartech <sonartech@sonarsource.com>
Tue, 23 Mar 2021 20:08:24 +0000 (20:08 +0000)
commitae89e66cf02c6c12ed45b6980e3779be19e2e54b
treed717c1f7344a79aba9cfedaaf6289233a8b2aacb
parentd56c808b272298f349fcbe4d943e528f0251518a
SONAR-14590 Adding GitHub Action tutorial
54 files changed:
server/sonar-web/public/images/tutorials/github-actions.svg [new file with mode: 0644]
server/sonar-web/src/main/js/app/styles/init/misc.css
server/sonar-web/src/main/js/components/tutorials/TutorialSelectionRenderer.tsx
server/sonar-web/src/main/js/components/tutorials/__tests__/TutorialSelectionRenderer-test.tsx
server/sonar-web/src/main/js/components/tutorials/__tests__/__snapshots__/TutorialSelectionRenderer-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/components/AllSet.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/DefaultProjectKey.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/TokenStepGenerator.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/AllSet-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/DefaultProjectKey-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/TokenStepGenerator-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/__snapshots__/AllSet-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/__snapshots__/DefaultProjectKey-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/components/__tests__/__snapshots__/TokenStepGenerator-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/AnalysisCommand.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/GitHubActionTutorial.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/SecretStep.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/YamlFileStep.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/AnalysisCommand-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/GitHubActionTutorial-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/SecretStep-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/YamlFileStep-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/AnalysisCommand-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GitHubActionTutorial-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/SecretStep-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/YamlFileStep-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/CreateYmlFile.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/DotNet.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/Gradle.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/JavaMaven.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/Others.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/CreateYmlFile-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/DotNet-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/Gradle-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/JavaMaven-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/Others-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/CreateYmlFile-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/DotNet-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/JavaMaven-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Others-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/tutorials/gitlabci/EnvironmentVariablesStep.tsx
server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/EnvironmentVariablesStep-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/jenkins/JenkinsfileStep.tsx
server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/JenkinsfileStep-test.tsx
server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsfileStep-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/Gradle.tsx
server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/Maven.tsx
server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/Other.tsx
server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Other-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/types.ts
server/sonar-web/src/main/js/components/tutorials/utils.ts
sonar-core/src/main/resources/org/sonar/l10n/core.properties