update metadata, histogram, visualization, violin plot modules component #2616
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
concurrency: | |
group: ci-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: Nx Cloud - Main Job | |
uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.11.2 | |
with: | |
number-of-agents: 3 | |
init-commands: | | |
npx nx-cloud start-ci-run --stop-agents-after="build" --agent-count=3 | |
parallel-commands: | | |
npx nx-cloud record -- npx nx format:check | |
parallel-commands-on-agents: | | |
npx nx affected --target=lint --parallel=3 | |
npx nx affected --target=test --parallel=3 --exclude="tag:karma-test-runner" --ci --code-coverage | |
npx nx affected --target=test --parallel=3 --exclude="*,!tag:karma-test-runner" --code-coverage | |
npx nx affected --target=test-doc-coverage --parallel=3 | |
npx nx affected --target=build --parallel=3 | |
main-branch-name: ${{ github.base_ref || github.ref_name }} | |
agents: | |
name: Nx Cloud - Agents | |
uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.11.2 | |
with: | |
number-of-agents: 3 | |
slack-notification: | |
name: Slack Notification | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
needs: main | |
steps: | |
- uses: kpritam/slack-job-status-action@v1 | |
with: | |
job-status: ${{ needs.main.result }} | |
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
channel: github |