-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathci.ts
More file actions
60 lines (53 loc) · 1.25 KB
/
ci.ts
File metadata and controls
60 lines (53 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { action, Workflow } from "ghats";
import { setupJob } from "./_helpers";
const workflow = new Workflow("CI", {
on: {
pullRequest: { branches: ["main"] },
push: { branches: ["main"] },
},
permissions: {},
});
workflow.addJob(
setupJob("test", {
permissions: { contents: "read" },
timeoutMinutes: 5,
withBun: true,
})
.run("bun test --coverage --coverage-reporter=lcov")
.uses(
action("codecov/codecov-action", {
with: {
token: "${{ secrets.CODECOV_TOKEN }}",
files: "coverage/lcov.info",
disable_search: "true",
verbose: "true",
},
}),
),
);
workflow.addJob(
setupJob("build-workflow", {
permissions: { contents: "read" },
timeoutMinutes: 5,
withBun: true,
})
.run(`
cat <<EOF > ./.github/workflows/example.ts
import { Workflow, Job } from "ghats";
const workflow = new Workflow("Hello", {
on: "push",
});
workflow.addJob(
new Job("hello", {
runsOn: "ubuntu-latest",
})
.uses("actions/checkout@v4")
.run("echo 'Hello, world!'"),
);
export default workflow;
EOF
`)
.run("bun run ./lib/cli/index.ts build ./.github/workflows/example.ts")
.run("cat ./.github/workflows/example.yml"),
);
export default workflow;