jest-webextension-mock 3.8.3 → 3.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,4 +26,10 @@ jobs:
|
|
|
26
26
|
- run: npm test
|
|
27
27
|
- run: npm run build --if-present
|
|
28
28
|
- run: git status --porcelain dist/setup.js
|
|
29
|
+
- name: check dist build
|
|
30
|
+
run: |
|
|
31
|
+
if ! git diff --quiet --exit-code dist/setup.js; then
|
|
32
|
+
echo "::error run 'npm run build' and commit the dist/setup.js file"
|
|
33
|
+
exit 1
|
|
34
|
+
fi
|
|
29
35
|
- uses: codecov/codecov-action@v3
|