Check for uncommitted files beyond the diff
directory
#3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for uncommitted files | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
# This ensures a rebuild matches the checked-in dist/ folder | |
verify-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Rebuild the dist/ directory | |
run: npm run build | |
- name: Compare the expected and actual dist/ directories | |
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)" |