File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 "act" : " act -j integration" ,
44 "check" : " deno check **/*.ts" ,
55 "pre-commit" : " deno fmt && deno lint && deno task check && deno task test" ,
6- "run" : " deno run --allow-env --allow-read --allow-write --allow-net --allow-run=deno,git --no-prompt --unstable-kv ./main.ts" ,
6+ "run" : " deno run --allow-env --allow-read --allow-write --allow-net --allow-run=deno,git --no-prompt --unstable-kv ./src/ main.ts" ,
77 "test" : " deno test --allow-env --allow-read --allow-write=. --allow-net --allow-run=deno --env --no-check --unstable-kv"
88 },
99 "imports" : {
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import actions from "@actions/core";
22import * as github from "@actions/github" ;
33import { collect , createCommitSequence , execute } from "@molt/core" ;
44import { expandGlob } from "@std/fs" ;
5- import { getInputs } from "./src/ inputs.ts" ;
6- import { fromInputs } from "./src/ params.ts" ;
7- import { parseGitUser } from "./src/strings .ts" ;
8- import { createSummary } from "./src/summary .ts" ;
9- import { createReport } from "./src/report .ts" ;
5+ import { getInputs } from "./inputs.ts" ;
6+ import { fromInputs } from "./params.ts" ;
7+ import { createReport } from "./report .ts" ;
8+ import { parseGitUser } from "./strings .ts" ;
9+ import { createSummary } from "./summary .ts" ;
1010
1111export default async function main ( ) {
1212 actions . debug ( JSON . stringify ( github . context ) ) ;
You can’t perform that action at this time.
0 commit comments