Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
b00ste committed Sep 7, 2023
1 parent d84f0f6 commit ad89305
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@ jobs:
curl -OL https://github.com/tidwall/jj/releases/download/v1.9.2/jj-1.9.2-linux-amd64.tar.gz
tar xvzf jj-1.9.2-linux-amd64.tar.gz
rm jj-1.9.2-linux-amd64.tar.gz
./jj-1.9.2-linux-amd64/jj -h
for FILE in ./artifacts/contracts/**/*.json;
do
echo $FILE;
stat --printf="%s" $FILE;
./jj-1.9.2-linux-amd64/jj -u < $FILE;
stat --printf="%s" $FILE;
done
- name: 🧪 run import/requires tests
run: npm run test:importRequire
Expand Down

0 comments on commit ad89305

Please sign in to comment.