-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: optimize pull-requests workflow (#765)
* chore: optimize pull-requests workflow * fix: quote glob pattern * fix: append `$` to variables in workflow * chore: include `yaml` files in lintstaged format check * feat: detect to_format or to_lint changed files * feat: run test workflow steps conditionally * Update .github/workflows/pull-requests.yml Co-authored-by: Daehyun Paik <paik@a30a.dev> * Update .github/workflows/pull-requests.yml Co-authored-by: Daehyun Paik <paik@a30a.dev> * fix: build utils before contracts * fix: build identity pkg before running contracts tests * fix: need to quote `true` * fix: build group pkg before running contracts tests * fix: build `{group,identity,proof}` before running circuits tests * fix: build `proof` pkg before running contracts tests * fix: build utils before testing circuits * fix: build `utils` before `subgraph` pkg --------- Co-authored-by: Daehyun Paik <paik@a30a.dev>
- Loading branch information
Showing
2 changed files
with
95 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"**/*.{js,ts,jsx,tsx,md,json,sol}": "prettier --write", | ||
"**/*.{js,ts,jsx,tsx,md,json,sol,yaml,yml}": "prettier --write", | ||
"**/*.{js,ts,jsx,tsx}": "eslint" | ||
} |