This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
Added link to Meta Quest Store entry for organ gallery #187
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/[email protected] | |
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 --ci --code-coverage | |
# npx nx affected --target=test-doc-coverage --parallel=3 | |
npx nx affected --target=build --parallel=3 | |
main-branch-name: develop | |
agents: | |
name: Nx Cloud - Agents | |
uses: nrwl/ci/.github/workflows/[email protected] | |
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 |