-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(GHActions): publish GH Marketplace Docker image with DX Scanner
- Loading branch information
1 parent
0d01768
commit 71db6c0
Showing
2 changed files
with
20 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
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,11 @@ | ||
FROM node:12-slim | ||
|
||
LABEL maintainer="Prokop Simek, Adéla Homolová" | ||
LABEL "com.github.actions.name"="DX Scanner Action" | ||
LABEL "com.github.actions.description"="Measure Developer Experience directly based on your source code. DX Scanner recommends practices that can help you with improving your product development." | ||
LABEL "com.github.actions.icon"="user-check" | ||
LABEL "com.github.actions.color"="green" | ||
|
||
RUN yarn global add dx-scanner | ||
|
||
ENTRYPOINT ["dx-scanner", "ci", ".", "-r", "--fail=high"] |