Skip to content

Commit

Permalink
chore: Check for changes in the src/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
somaromero committed Jul 30, 2024
1 parent efaa03e commit 18b6740
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,9 @@ jobs:
- run: npm ci
- run: npm run build --if-present
# - run: npm test

# Check if there are changes in the src/ directory
- name: Check for changes in the src/ directory
run: |
git diff --exit-code src/
echo "::set-output name=changes::$(git diff --exit-code src/; echo $?)"

0 comments on commit 18b6740

Please sign in to comment.