Skip to content

Commit

Permalink
chore: include shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed May 2, 2024
1 parent 698dc16 commit 5cb98db
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/check-launch-templates.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
BASEDIR="./launch-templates"

for FILE in "$BASEDIR"/*
do
if [ -f "$FILE" ]
then
echo "Validating $FILE"
npx nx-cloud validate --workflow-file=$FILE
fi
done

0 comments on commit 5cb98db

Please sign in to comment.