Bump github/dependabot-update-job-proxy/dependabot-update-job-proxy from v2.0.20251010195543 to v2.0.20251014173146 in /docker #6675
Workflow file for this run
This file contains hidden or 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 dist | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
verify-build: # make sure the checked in dist/ folder matches the output of a rebuild | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v5 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- run: npm clean-install | |
- name: Rebuild the dist/ directory | |
run: npm run package | |
- name: Compare the expected and actual dist/ directories | |
run: script/check-diff | |
verify-index-js: # make sure the entrypoint js files run on a clean machine without compiling first | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: ./ | |
with: | |
milliseconds: 1000 |