DST-17030 - Added write packages permission for GHCR push. #251
Workflow file for this run
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
name: Code Quality | |
on: | |
push: | |
branches-ignore: | |
- dependabot/** | |
jobs: | |
analyze-java: | |
name: Analyze Java | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- uses: github/codeql-action/init@v1 | |
- uses: github/codeql-action/autobuild@v1 | |
- uses: github/codeql-action/analyze@v1 | |
lint-typescript: | |
name: Lint Typescript | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- name: Lint | |
run: ./gradlew npm_run_lint |