feat(sage-monorepo): remove all publish-image
tasks (ARCH-336) (#2921)
#226
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: Sonar Scan | |
on: | |
push: | |
branches: | |
- main | |
- 'agora/**' | |
- 'iatlas/**' | |
- 'openchallenges/**' | |
- 'sage-monorepo/**' | |
- 'sage/**' | |
- 'schematic/**' | |
jobs: | |
sonar: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# We need to fetch all branches and commits so that Nx affected has a base to compare | |
# against. | |
fetch-depth: 0 | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v4 | |
- name: Set up the dev container | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
uses: ./.github/actions/setup-dev-container | |
- name: Scan the affected projects with Sonar | |
run: | | |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \ | |
&& nx affected --target=sonar" |