Skip to content

Commit

Permalink
Forbid symlinks (DefinitelyTyped#54339)
Browse files Browse the repository at this point in the history
  • Loading branch information
elibarzilay authored Jul 7, 2021
1 parent 958ef1f commit 7b2f0d4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ jobs:
with:
node-version: "12"

# forbid symlinks
- name: "Pre-run validation"
run: |
symlinks="$(find . -type l)"
if [[ -n "$symlinks" ]]; then
printf "Aborting: symlinks found:\n%s" "$symlinks"; exit 1
fi
# Get local dependencies
- run: npm install

Expand Down

0 comments on commit 7b2f0d4

Please sign in to comment.