Skip to content

Commit 760935e

Browse files
committed
ci: update workflow
1 parent ef6e1d6 commit 760935e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/verify-packages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ jobs:
3838
mkdir -p results
3939
echo "| Tag | Result | Differing Packages |" > results/summary.md
4040
echo "|-----|--------|--------------------|" >> results/summary.md
41+
echo "Tags to check:" >&2
42+
echo "${{ steps.get_tags.outputs.tags }}" >&2
4143
for TAG in ${{ steps.get_tags.outputs.tags }}; do
4244
echo "Checking out $TAG"
4345
git checkout $TAG
4446
npm ci || { echo "| $TAG | npm ci failed | - |" >> results/summary.md; continue; }
45-
DIFFERS_JSON=$(npx tsx ./build-packages.ts)
47+
DIFFERS_JSON=$(TAG=$TAG npx tsx ./build-packages.ts)
4648
if [ "$DIFFERS_JSON" != "[]" ]; then
4749
# Remove brackets and quotes for markdown table
4850
DIFFERS_LIST=$(echo $DIFFERS_JSON | jq -r '. | join(", ")')
@@ -56,3 +58,5 @@ jobs:
5658
- name: Print summary table
5759
run: |
5860
cat results/summary.md
61+
62+
# continue: check github action status !!!

0 commit comments

Comments
 (0)