Initial code import

This commit is contained in:
Christopher Schleiden
2022-11-08 17:00:59 -08:00
parent 7352cda0cf
commit 2e1652515e
38 changed files with 1354 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
describe("validation", () => {
it("valid workflow", async () => {
// const result = await hover(null as any, {
// line: 1,
// character: 2,
// });
// expect(result).not.toBeUndefined();
// expect(result?.contents).toEqual(
// "The name of the GitHub event that triggers the workflow. You can provide a single event string, array of events, array of event types, or an event configuration map that schedules a workflow or restricts the execution of a workflow to specific files, tags, or branch changes. For a list of available events, see https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows."
// );
});
});