Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lehoczky committed Dec 6, 2024
1 parent db25afc commit b7a4900
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
# run: npx nx show projects --affected >> $GITHUB_OUTPUT

- id: affected-packages
run: echo "affected='$(npx nx show projects --affected)'" >> "$GITHUB_OUTPUT"
run: |
AFFECTED='$(npx nx show projects --affected)' | tr '\n' ' '
echo "affected='${AFFECTED}'" >> "$GITHUB_OUTPUT"
- run: echo ${{contains(steps.affected-packages.outputs.affected, 'demo')}}

Expand Down

0 comments on commit b7a4900

Please sign in to comment.