Skip to content

Commit

Permalink
Update global-npm-resolve-conflicting-files-fix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw authored Jan 15, 2025
1 parent 59ec7a6 commit 50d9818
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Define projects
id: define-projects
run: echo "::set-output name=projects::starskydesktop documentation"
run: echo "projects=starskydesktop documentation" >> $GITHUB_ENV

- name: Set up Node.js
uses: actions/setup-node@v3
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Resolve package-lock.json conflicts
run: |
for project in ${{ steps.define-projects.outputs.projects }}; do
for project in ${{ env.projects }}; do
echo "Checking for conflicts in $project/package-lock.json"
if ! git diff --exit-code $project/package-lock.json > /dev/null; then
echo "Conflicts detected in $project/package-lock.json"
Expand Down

0 comments on commit 50d9818

Please sign in to comment.