-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (43 loc) · 1.41 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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