Skip to content

Commit 6412b47

Browse files
committed
Init
0 parents  commit 6412b47

File tree

513 files changed

+1148914
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

513 files changed

+1148914
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_STORE
2+
.yarn/*
3+
!.yarn/releases
4+
!.yarn/plugins
5+
!.yarn/sdks
6+
!.yarn/versions
7+
.pnp.*
8+
**/.eslintcache
9+
.idea/*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Coming soon.

action.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# action.yml
2+
name: "Graphite Upload Code Coverage Action"
3+
description: "Coming soon."
4+
author: "Graphite.dev"
5+
inputs:
6+
github-token:
7+
description: "The github token."
8+
required: true
9+
repo:
10+
description: "Override the branch name"
11+
required: true
12+
org:
13+
description: "Override the commit sha"
14+
required: true
15+
sha:
16+
description: "Override the commit sha"
17+
required: true
18+
path-to-lcov:
19+
description: "Path to lcov file"
20+
required: true
21+
default: "./coverage/lcov.info"
22+
base-path:
23+
description: "The root folder of the project that originally ran the tests"
24+
required: false
25+
branding:
26+
color: "green"
27+
icon: "bar-chart"
28+
runs:
29+
using: "node16"
30+
main: "./lib/main.js"

dist/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

dist/src/index.js

Lines changed: 92 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tsconfig.tsbuildinfo

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

node_modules/.bin/tsc

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/tsserver

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/uuid

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)