Skip to content

Commit

Permalink
Require clean working directory (#7)
Browse files Browse the repository at this point in the history
* Require clean working directory

* Update manifest
  • Loading branch information
FrederikBolding authored Sep 5, 2022
1 parent 3f393b0 commit 84b3d92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:
- run: yarn build
- run: yarn lint
- run: yarn test
- name: Require clean working directory
shell: bash
run: |
if ! git diff --exit-code; then
echo "Working tree dirty after building"
exit 1
fi
# - name: Validate RC changelog
# if: ${{ startsWith(github.head_ref, 'release/') }}
# run: yarn auto-changelog validate --rc
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snap-template.git"
},
"source": {
"shasum": "ZowWdJLCOijpOFAdPXlXnzpqIq2L0pM3m+E/zgCKs/k=",
"shasum": "GbpXAntwgt11+Q6D/7MZYNgFRPzbV7lYzmb8DX9ojNo=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down

0 comments on commit 84b3d92

Please sign in to comment.