Github action for outputting a list of affected nx projects (apps and libs)
The possible inputs for this action are:
inputs:
base:
description: Base of the current branch (usually main)
required: false
head:
description: Latest commit of the current branch (usually HEAD)
required: false
The outputs for this action are:
outputs:
affectedApps:
description: array of affected app names
hasAffectedApps:
description: true/false if there are affected apps
affectedLibs:
description: array of affected lib names
hasAffectedLibs:
description: true/false if there are affected libs
affected:
description: array of affected projects (apps/libs) names
hasAffected:
description: true/false if there are affected projects (apps/libs)
- name: Check for Affected Projects
uses: dkhunt27/action-nx-affected-list@v3
id: checkForAffected
- if: steps.checkForAffected.outputs.hasAffected == 'true'
name: Build (Nx Affected)
uses: mansagroup/nrwl-nx-action@v2
with:
targets: build
affected: true
nxCloud: false
- if: contains(steps.checkForAffected.outputs.affected, 'someAppName')
### do something specific for someAppName
- wait for pipelines to finish (test will always finish with an error since this isn't a nx monorepo)
- git checkout main
- git pull
- git tag v1
- SKIP_HOOKS=true git push origin v1
- in github, edit tag and save (this will push to marketplace)
npm run npm:check
Thanks to ignition-is-go which was the starting point of this code (couldn't find a published version of it)