We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5208aeb commit 483095fCopy full SHA for 483095f
1 file changed
.github/workflows/ci.yml
@@ -42,5 +42,7 @@ jobs:
42
run: npm run build
43
44
- name: Verify dist is up to date
45
+ if: matrix.node-version == 20
46
run: |
- git diff --exit-code dist/ || (echo "::error::dist/ is out of date. Run 'npm run build' and commit the changes." && exit 1)
47
+ # Check if main dist file is up to date (ignore sourcemaps which can differ between environments)
48
+ git diff --exit-code dist/index.js || (echo "::error::dist/index.js is out of date. Run 'npm run build' and commit the changes." && exit 1)
0 commit comments