Skip to content

Commit

Permalink
Check for uncommitted files beyond dist/ directory
Browse files Browse the repository at this point in the history
This checks for _any_ delta in the git repo, not just the `dist/`
directory. Any change should fail CI until it's either committed or
added to `.gitignore`.

Additionally, I clarified the script name/code slightly to explain why
it's needed/handled separately from checking for uncommitted files.
  • Loading branch information
jeffwidman committed Jul 21, 2023
1 parent 2e4189d commit 02f6890
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 14 deletions.
@@ -1,4 +1,4 @@
name: Check dist
name: Check for uncommitted files

on:
pull_request:
Expand All @@ -8,7 +8,8 @@ on:
- 'releases/*'

jobs:
verify-build: # make sure the checked in dist/ folder matches the output of a rebuild
# This ensures a rebuild matches the checked-in dist/ folder
verify-build:
runs-on: ubuntu-latest

steps:
Expand All @@ -28,4 +29,15 @@ jobs:
run: npm run build

- name: Compare the expected and actual dist/ directories
run: bin/check-diff
run: bin/check-build-output-in-dist-directory

check-for-uncommitted-files:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Compare the expected vs actual files
run: test -z "$(git status --porcelain)"
14 changes: 14 additions & 0 deletions bin/check-build-output-in-dist-directory
@@ -0,0 +1,14 @@
#!/bin/bash

# Make sure we notice any untracked files generated by the build in the dist/ directory
git add --intent-to-add .
git diff --quiet dist/
retVal=$?
if [ $retVal -ne 0 ]; then
echo "Detected uncommitted changes after build:"
# The contents of the diff/ folder are marked as generated:
# https://github.com/dependabot/fetch-metadata/blob/6c2bf2fe33cc133b474165107a8b29ccc265dc96/.gitattributes#L1
# so this ensures we spit out the actual change in the obfuscated JS.
git --no-pager diff dist/
exit 1
fi
11 changes: 0 additions & 11 deletions bin/check-diff

This file was deleted.

0 comments on commit 02f6890

Please sign in to comment.