File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff 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(", ")')
5658 - name : Print summary table
5759 run : |
5860 cat results/summary.md
61+
62+ # continue: check github action status !!!
You can’t perform that action at this time.
0 commit comments