-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into 214-dev-add-vscode-ta…
…sk-which-does-the-full-PR-view (#216) Auto-created
- Loading branch information
1 parent
be802d6
commit 74d713f
Showing
2 changed files
with
67 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "PR", | ||
"type": "shell", | ||
"command": "make pr-status", | ||
"group": "test", | ||
"dependsOn": [ | ||
"Lint", | ||
"Test", | ||
"Static type check", | ||
"Setup PR", | ||
], | ||
"presentation": { | ||
"reveal": "always", | ||
"group": "pr" | ||
} | ||
}, | ||
{ | ||
"label": "Lint", | ||
"type": "shell", | ||
"command": "make lint", | ||
"presentation": { | ||
"reveal": "always", | ||
"group": "pr" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Setup PR", | ||
"type": "shell", | ||
"command": "make setup-pr", | ||
"presentation": { | ||
"reveal": "always", | ||
"group": "pr" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Test", | ||
"type": "shell", | ||
"command": "make test", | ||
"presentation": { | ||
"reveal": "always", | ||
"group": "pr" | ||
}, | ||
}, | ||
{ | ||
"label": "Static type check", | ||
"type": "shell", | ||
"command": "make types", | ||
"presentation": { | ||
"reveal": "always", | ||
"group": "pr" | ||
} | ||
} | ||
] | ||
} |
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