We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53ead4c + a4ea730 commit fd14479Copy full SHA for fd14479
app2/app2.nix
@@ -90,6 +90,22 @@ _: {
90
'';
91
};
92
93
+ app2-check-watch = {
94
+ type = "app";
95
+ program = pkgs.writeShellApplication {
96
+ name = "app-check-watch";
97
+ runtimeInputs = deps;
98
+ text = ''
99
+ ${ensureAtRepositoryRoot}
100
+ cd app2/
101
+ export PUBLIC_DATADOG_CLIENT_TOKEN="${PUBLIC_DATADOG_CLIENT_TOKEN}"
102
+ export PUBLIC_GIT_REV="${PUBLIC_GIT_REV}"
103
+ export PUBLIC_LAST_MODIFIED_DATE="${PUBLIC_LAST_MODIFIED_DATE}"
104
+ export PUBLIC_LAST_MODIFIED_EPOCH="${PUBLIC_LAST_MODIFIED_EPOCH}"
105
+ pnpm run check --watch --threshold warning
106
+ '';
107
+ };
108
109
app2-fetch-schema = {
110
type = "app";
111
program = pkgs.writeShellApplication {
0 commit comments