Add missing dist check

This commit is contained in:
Nick Alteen
2024-05-02 11:22:24 -04:00
parent f3a240c09e
commit 70ed80b9ab

View File

@ -10,10 +10,12 @@
name: Check Transpiled JavaScript name: Check Transpiled JavaScript
on: on:
pull_request:
branches:
- main
push: push:
branches: branches:
- main - main
pull_request:
permissions: permissions:
contents: read contents: read
@ -48,6 +50,11 @@ jobs:
- name: Compare Directories - name: Compare Directories
id: diff id: diff
run: | run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:" echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/ git diff --ignore-space-at-eol --text dist/