diff --git a/actions-expressions/.npmrc b/expressions/.npmrc similarity index 100% rename from actions-expressions/.npmrc rename to expressions/.npmrc diff --git a/actions-expressions/.prettierignore b/expressions/.prettierignore similarity index 100% rename from actions-expressions/.prettierignore rename to expressions/.prettierignore diff --git a/actions-expressions/README.md b/expressions/README.md similarity index 100% rename from actions-expressions/README.md rename to expressions/README.md diff --git a/actions-expressions/jest.config.js b/expressions/jest.config.js similarity index 100% rename from actions-expressions/jest.config.js rename to expressions/jest.config.js diff --git a/actions-expressions/package.json b/expressions/package.json similarity index 100% rename from actions-expressions/package.json rename to expressions/package.json diff --git a/actions-expressions/script/build b/expressions/script/build similarity index 100% rename from actions-expressions/script/build rename to expressions/script/build diff --git a/actions-expressions/script/test b/expressions/script/test similarity index 100% rename from actions-expressions/script/test rename to expressions/script/test diff --git a/actions-expressions/src/ast.ts b/expressions/src/ast.ts similarity index 100% rename from actions-expressions/src/ast.ts rename to expressions/src/ast.ts diff --git a/actions-expressions/src/completion.test.ts b/expressions/src/completion.test.ts similarity index 100% rename from actions-expressions/src/completion.test.ts rename to expressions/src/completion.test.ts diff --git a/actions-expressions/src/completion.ts b/expressions/src/completion.ts similarity index 100% rename from actions-expressions/src/completion.ts rename to expressions/src/completion.ts diff --git a/actions-expressions/src/completion/descriptionDictionary.test.ts b/expressions/src/completion/descriptionDictionary.test.ts similarity index 100% rename from actions-expressions/src/completion/descriptionDictionary.test.ts rename to expressions/src/completion/descriptionDictionary.test.ts diff --git a/actions-expressions/src/completion/descriptionDictionary.ts b/expressions/src/completion/descriptionDictionary.ts similarity index 100% rename from actions-expressions/src/completion/descriptionDictionary.ts rename to expressions/src/completion/descriptionDictionary.ts diff --git a/actions-expressions/src/data/array.ts b/expressions/src/data/array.ts similarity index 100% rename from actions-expressions/src/data/array.ts rename to expressions/src/data/array.ts diff --git a/actions-expressions/src/data/boolean.ts b/expressions/src/data/boolean.ts similarity index 100% rename from actions-expressions/src/data/boolean.ts rename to expressions/src/data/boolean.ts diff --git a/actions-expressions/src/data/dictionary.test.ts b/expressions/src/data/dictionary.test.ts similarity index 100% rename from actions-expressions/src/data/dictionary.test.ts rename to expressions/src/data/dictionary.test.ts diff --git a/actions-expressions/src/data/dictionary.ts b/expressions/src/data/dictionary.ts similarity index 100% rename from actions-expressions/src/data/dictionary.ts rename to expressions/src/data/dictionary.ts diff --git a/actions-expressions/src/data/expressiondata.ts b/expressions/src/data/expressiondata.ts similarity index 100% rename from actions-expressions/src/data/expressiondata.ts rename to expressions/src/data/expressiondata.ts diff --git a/actions-expressions/src/data/index.ts b/expressions/src/data/index.ts similarity index 100% rename from actions-expressions/src/data/index.ts rename to expressions/src/data/index.ts diff --git a/actions-expressions/src/data/null.ts b/expressions/src/data/null.ts similarity index 100% rename from actions-expressions/src/data/null.ts rename to expressions/src/data/null.ts diff --git a/actions-expressions/src/data/number.ts b/expressions/src/data/number.ts similarity index 100% rename from actions-expressions/src/data/number.ts rename to expressions/src/data/number.ts diff --git a/actions-expressions/src/data/replacer.test.ts b/expressions/src/data/replacer.test.ts similarity index 100% rename from actions-expressions/src/data/replacer.test.ts rename to expressions/src/data/replacer.test.ts diff --git a/actions-expressions/src/data/replacer.ts b/expressions/src/data/replacer.ts similarity index 100% rename from actions-expressions/src/data/replacer.ts rename to expressions/src/data/replacer.ts diff --git a/actions-expressions/src/data/reviver.test.ts b/expressions/src/data/reviver.test.ts similarity index 100% rename from actions-expressions/src/data/reviver.test.ts rename to expressions/src/data/reviver.test.ts diff --git a/actions-expressions/src/data/reviver.ts b/expressions/src/data/reviver.ts similarity index 100% rename from actions-expressions/src/data/reviver.ts rename to expressions/src/data/reviver.ts diff --git a/actions-expressions/src/data/string.ts b/expressions/src/data/string.ts similarity index 100% rename from actions-expressions/src/data/string.ts rename to expressions/src/data/string.ts diff --git a/actions-expressions/src/errors.ts b/expressions/src/errors.ts similarity index 100% rename from actions-expressions/src/errors.ts rename to expressions/src/errors.ts diff --git a/actions-expressions/src/evaluator.test.ts b/expressions/src/evaluator.test.ts similarity index 100% rename from actions-expressions/src/evaluator.test.ts rename to expressions/src/evaluator.test.ts diff --git a/actions-expressions/src/evaluator.ts b/expressions/src/evaluator.ts similarity index 100% rename from actions-expressions/src/evaluator.ts rename to expressions/src/evaluator.ts diff --git a/actions-expressions/src/filtered_array.ts b/expressions/src/filtered_array.ts similarity index 100% rename from actions-expressions/src/filtered_array.ts rename to expressions/src/filtered_array.ts diff --git a/actions-expressions/src/funcs.ts b/expressions/src/funcs.ts similarity index 100% rename from actions-expressions/src/funcs.ts rename to expressions/src/funcs.ts diff --git a/actions-expressions/src/funcs/contains.ts b/expressions/src/funcs/contains.ts similarity index 100% rename from actions-expressions/src/funcs/contains.ts rename to expressions/src/funcs/contains.ts diff --git a/actions-expressions/src/funcs/endswith.ts b/expressions/src/funcs/endswith.ts similarity index 100% rename from actions-expressions/src/funcs/endswith.ts rename to expressions/src/funcs/endswith.ts diff --git a/actions-expressions/src/funcs/format.test.ts b/expressions/src/funcs/format.test.ts similarity index 100% rename from actions-expressions/src/funcs/format.test.ts rename to expressions/src/funcs/format.test.ts diff --git a/actions-expressions/src/funcs/format.ts b/expressions/src/funcs/format.ts similarity index 100% rename from actions-expressions/src/funcs/format.ts rename to expressions/src/funcs/format.ts diff --git a/actions-expressions/src/funcs/fromjson.ts b/expressions/src/funcs/fromjson.ts similarity index 100% rename from actions-expressions/src/funcs/fromjson.ts rename to expressions/src/funcs/fromjson.ts diff --git a/actions-expressions/src/funcs/info.ts b/expressions/src/funcs/info.ts similarity index 100% rename from actions-expressions/src/funcs/info.ts rename to expressions/src/funcs/info.ts diff --git a/actions-expressions/src/funcs/join.ts b/expressions/src/funcs/join.ts similarity index 100% rename from actions-expressions/src/funcs/join.ts rename to expressions/src/funcs/join.ts diff --git a/actions-expressions/src/funcs/startswith.ts b/expressions/src/funcs/startswith.ts similarity index 100% rename from actions-expressions/src/funcs/startswith.ts rename to expressions/src/funcs/startswith.ts diff --git a/actions-expressions/src/funcs/tojson.ts b/expressions/src/funcs/tojson.ts similarity index 100% rename from actions-expressions/src/funcs/tojson.ts rename to expressions/src/funcs/tojson.ts diff --git a/actions-expressions/src/idxHelper.ts b/expressions/src/idxHelper.ts similarity index 100% rename from actions-expressions/src/idxHelper.ts rename to expressions/src/idxHelper.ts diff --git a/actions-expressions/src/index.ts b/expressions/src/index.ts similarity index 100% rename from actions-expressions/src/index.ts rename to expressions/src/index.ts diff --git a/actions-expressions/src/lexer.test.ts b/expressions/src/lexer.test.ts similarity index 100% rename from actions-expressions/src/lexer.test.ts rename to expressions/src/lexer.test.ts diff --git a/actions-expressions/src/lexer.ts b/expressions/src/lexer.ts similarity index 100% rename from actions-expressions/src/lexer.ts rename to expressions/src/lexer.ts diff --git a/actions-expressions/src/parser.ts b/expressions/src/parser.ts similarity index 100% rename from actions-expressions/src/parser.ts rename to expressions/src/parser.ts diff --git a/actions-expressions/src/result.test.ts b/expressions/src/result.test.ts similarity index 100% rename from actions-expressions/src/result.test.ts rename to expressions/src/result.test.ts diff --git a/actions-expressions/src/result.ts b/expressions/src/result.ts similarity index 100% rename from actions-expressions/src/result.ts rename to expressions/src/result.ts diff --git a/actions-expressions/src/xlang.test.ts b/expressions/src/xlang.test.ts similarity index 100% rename from actions-expressions/src/xlang.test.ts rename to expressions/src/xlang.test.ts diff --git a/actions-expressions/testdata/basic.json b/expressions/testdata/basic.json similarity index 100% rename from actions-expressions/testdata/basic.json rename to expressions/testdata/basic.json diff --git a/actions-expressions/testdata/coerce_boolean.json b/expressions/testdata/coerce_boolean.json similarity index 100% rename from actions-expressions/testdata/coerce_boolean.json rename to expressions/testdata/coerce_boolean.json diff --git a/actions-expressions/testdata/coerce_number.json b/expressions/testdata/coerce_number.json similarity index 100% rename from actions-expressions/testdata/coerce_number.json rename to expressions/testdata/coerce_number.json diff --git a/actions-expressions/testdata/coerce_string.json b/expressions/testdata/coerce_string.json similarity index 100% rename from actions-expressions/testdata/coerce_string.json rename to expressions/testdata/coerce_string.json diff --git a/actions-expressions/testdata/contains.json b/expressions/testdata/contains.json similarity index 100% rename from actions-expressions/testdata/contains.json rename to expressions/testdata/contains.json diff --git a/actions-expressions/testdata/endsWith.json b/expressions/testdata/endsWith.json similarity index 100% rename from actions-expressions/testdata/endsWith.json rename to expressions/testdata/endsWith.json diff --git a/actions-expressions/testdata/format.json b/expressions/testdata/format.json similarity index 100% rename from actions-expressions/testdata/format.json rename to expressions/testdata/format.json diff --git a/actions-expressions/testdata/fromJSON.json b/expressions/testdata/fromJSON.json similarity index 100% rename from actions-expressions/testdata/fromJSON.json rename to expressions/testdata/fromJSON.json diff --git a/actions-expressions/testdata/join.json b/expressions/testdata/join.json similarity index 100% rename from actions-expressions/testdata/join.json rename to expressions/testdata/join.json diff --git a/actions-expressions/testdata/number.json b/expressions/testdata/number.json similarity index 100% rename from actions-expressions/testdata/number.json rename to expressions/testdata/number.json diff --git a/actions-expressions/testdata/op_and.json b/expressions/testdata/op_and.json similarity index 100% rename from actions-expressions/testdata/op_and.json rename to expressions/testdata/op_and.json diff --git a/actions-expressions/testdata/op_dot.json b/expressions/testdata/op_dot.json similarity index 100% rename from actions-expressions/testdata/op_dot.json rename to expressions/testdata/op_dot.json diff --git a/actions-expressions/testdata/op_eq.json b/expressions/testdata/op_eq.json similarity index 100% rename from actions-expressions/testdata/op_eq.json rename to expressions/testdata/op_eq.json diff --git a/actions-expressions/testdata/op_gt.json b/expressions/testdata/op_gt.json similarity index 100% rename from actions-expressions/testdata/op_gt.json rename to expressions/testdata/op_gt.json diff --git a/actions-expressions/testdata/op_gte.json b/expressions/testdata/op_gte.json similarity index 100% rename from actions-expressions/testdata/op_gte.json rename to expressions/testdata/op_gte.json diff --git a/actions-expressions/testdata/op_idx.json b/expressions/testdata/op_idx.json similarity index 100% rename from actions-expressions/testdata/op_idx.json rename to expressions/testdata/op_idx.json diff --git a/actions-expressions/testdata/op_idx_star.json b/expressions/testdata/op_idx_star.json similarity index 100% rename from actions-expressions/testdata/op_idx_star.json rename to expressions/testdata/op_idx_star.json diff --git a/actions-expressions/testdata/op_lt.json b/expressions/testdata/op_lt.json similarity index 100% rename from actions-expressions/testdata/op_lt.json rename to expressions/testdata/op_lt.json diff --git a/actions-expressions/testdata/op_lte.json b/expressions/testdata/op_lte.json similarity index 100% rename from actions-expressions/testdata/op_lte.json rename to expressions/testdata/op_lte.json diff --git a/actions-expressions/testdata/op_ne.json b/expressions/testdata/op_ne.json similarity index 100% rename from actions-expressions/testdata/op_ne.json rename to expressions/testdata/op_ne.json diff --git a/actions-expressions/testdata/op_not.json b/expressions/testdata/op_not.json similarity index 100% rename from actions-expressions/testdata/op_not.json rename to expressions/testdata/op_not.json diff --git a/actions-expressions/testdata/op_or.json b/expressions/testdata/op_or.json similarity index 100% rename from actions-expressions/testdata/op_or.json rename to expressions/testdata/op_or.json diff --git a/actions-expressions/testdata/operators_case_insensitive.json b/expressions/testdata/operators_case_insensitive.json similarity index 100% rename from actions-expressions/testdata/operators_case_insensitive.json rename to expressions/testdata/operators_case_insensitive.json diff --git a/actions-expressions/testdata/operators_precedence.json b/expressions/testdata/operators_precedence.json similarity index 100% rename from actions-expressions/testdata/operators_precedence.json rename to expressions/testdata/operators_precedence.json diff --git a/actions-expressions/testdata/startsWith.json b/expressions/testdata/startsWith.json similarity index 100% rename from actions-expressions/testdata/startsWith.json rename to expressions/testdata/startsWith.json diff --git a/actions-expressions/testdata/syntax-errors.json b/expressions/testdata/syntax-errors.json similarity index 100% rename from actions-expressions/testdata/syntax-errors.json rename to expressions/testdata/syntax-errors.json diff --git a/actions-expressions/testdata/tojson.json b/expressions/testdata/tojson.json similarity index 100% rename from actions-expressions/testdata/tojson.json rename to expressions/testdata/tojson.json diff --git a/actions-expressions/tsconfig.build.json b/expressions/tsconfig.build.json similarity index 100% rename from actions-expressions/tsconfig.build.json rename to expressions/tsconfig.build.json diff --git a/actions-expressions/tsconfig.json b/expressions/tsconfig.json similarity index 100% rename from actions-expressions/tsconfig.json rename to expressions/tsconfig.json diff --git a/actions-languageserver/.prettierignore b/languageserver/.prettierignore similarity index 100% rename from actions-languageserver/.prettierignore rename to languageserver/.prettierignore diff --git a/actions-languageserver/README.md b/languageserver/README.md similarity index 100% rename from actions-languageserver/README.md rename to languageserver/README.md diff --git a/actions-languageserver/jest.config.js b/languageserver/jest.config.js similarity index 100% rename from actions-languageserver/jest.config.js rename to languageserver/jest.config.js diff --git a/actions-languageserver/package.json b/languageserver/package.json similarity index 100% rename from actions-languageserver/package.json rename to languageserver/package.json diff --git a/actions-languageserver/src/client.ts b/languageserver/src/client.ts similarity index 100% rename from actions-languageserver/src/client.ts rename to languageserver/src/client.ts diff --git a/actions-languageserver/src/commands.ts b/languageserver/src/commands.ts similarity index 100% rename from actions-languageserver/src/commands.ts rename to languageserver/src/commands.ts diff --git a/actions-languageserver/src/connection.ts b/languageserver/src/connection.ts similarity index 100% rename from actions-languageserver/src/connection.ts rename to languageserver/src/connection.ts diff --git a/actions-languageserver/src/context-providers.ts b/languageserver/src/context-providers.ts similarity index 100% rename from actions-languageserver/src/context-providers.ts rename to languageserver/src/context-providers.ts diff --git a/actions-languageserver/src/context-providers/action-outputs.ts b/languageserver/src/context-providers/action-outputs.ts similarity index 100% rename from actions-languageserver/src/context-providers/action-outputs.ts rename to languageserver/src/context-providers/action-outputs.ts diff --git a/actions-languageserver/src/context-providers/secrets.ts b/languageserver/src/context-providers/secrets.ts similarity index 100% rename from actions-languageserver/src/context-providers/secrets.ts rename to languageserver/src/context-providers/secrets.ts diff --git a/actions-languageserver/src/context-providers/steps.test.ts b/languageserver/src/context-providers/steps.test.ts similarity index 100% rename from actions-languageserver/src/context-providers/steps.test.ts rename to languageserver/src/context-providers/steps.test.ts diff --git a/actions-languageserver/src/context-providers/steps.ts b/languageserver/src/context-providers/steps.ts similarity index 100% rename from actions-languageserver/src/context-providers/steps.ts rename to languageserver/src/context-providers/steps.ts diff --git a/actions-languageserver/src/context-providers/variables.ts b/languageserver/src/context-providers/variables.ts similarity index 100% rename from actions-languageserver/src/context-providers/variables.ts rename to languageserver/src/context-providers/variables.ts diff --git a/actions-languageserver/src/description-provider.ts b/languageserver/src/description-provider.ts similarity index 100% rename from actions-languageserver/src/description-provider.ts rename to languageserver/src/description-provider.ts diff --git a/actions-languageserver/src/description-providers/action-input.test.ts b/languageserver/src/description-providers/action-input.test.ts similarity index 100% rename from actions-languageserver/src/description-providers/action-input.test.ts rename to languageserver/src/description-providers/action-input.test.ts diff --git a/actions-languageserver/src/description-providers/action-input.ts b/languageserver/src/description-providers/action-input.ts similarity index 100% rename from actions-languageserver/src/description-providers/action-input.ts rename to languageserver/src/description-providers/action-input.ts diff --git a/actions-languageserver/src/file-provider.ts b/languageserver/src/file-provider.ts similarity index 100% rename from actions-languageserver/src/file-provider.ts rename to languageserver/src/file-provider.ts diff --git a/actions-languageserver/src/index.test.ts b/languageserver/src/index.test.ts similarity index 100% rename from actions-languageserver/src/index.test.ts rename to languageserver/src/index.test.ts diff --git a/actions-languageserver/src/index.ts b/languageserver/src/index.ts similarity index 100% rename from actions-languageserver/src/index.ts rename to languageserver/src/index.ts diff --git a/actions-languageserver/src/initializationOptions.ts b/languageserver/src/initializationOptions.ts similarity index 100% rename from actions-languageserver/src/initializationOptions.ts rename to languageserver/src/initializationOptions.ts diff --git a/actions-languageserver/src/on-completion.ts b/languageserver/src/on-completion.ts similarity index 100% rename from actions-languageserver/src/on-completion.ts rename to languageserver/src/on-completion.ts diff --git a/actions-languageserver/src/request.ts b/languageserver/src/request.ts similarity index 100% rename from actions-languageserver/src/request.ts rename to languageserver/src/request.ts diff --git a/actions-languageserver/src/test-utils/workflow-context.ts b/languageserver/src/test-utils/workflow-context.ts similarity index 100% rename from actions-languageserver/src/test-utils/workflow-context.ts rename to languageserver/src/test-utils/workflow-context.ts diff --git a/actions-languageserver/src/utils/action-metadata.test.ts b/languageserver/src/utils/action-metadata.test.ts similarity index 100% rename from actions-languageserver/src/utils/action-metadata.test.ts rename to languageserver/src/utils/action-metadata.test.ts diff --git a/actions-languageserver/src/utils/action-metadata.ts b/languageserver/src/utils/action-metadata.ts similarity index 100% rename from actions-languageserver/src/utils/action-metadata.ts rename to languageserver/src/utils/action-metadata.ts diff --git a/actions-languageserver/src/utils/cache.ts b/languageserver/src/utils/cache.ts similarity index 100% rename from actions-languageserver/src/utils/cache.ts rename to languageserver/src/utils/cache.ts diff --git a/actions-languageserver/src/utils/timer.ts b/languageserver/src/utils/timer.ts similarity index 100% rename from actions-languageserver/src/utils/timer.ts rename to languageserver/src/utils/timer.ts diff --git a/actions-languageserver/src/value-providers.ts b/languageserver/src/value-providers.ts similarity index 100% rename from actions-languageserver/src/value-providers.ts rename to languageserver/src/value-providers.ts diff --git a/actions-languageserver/src/value-providers/action-inputs.ts b/languageserver/src/value-providers/action-inputs.ts similarity index 100% rename from actions-languageserver/src/value-providers/action-inputs.ts rename to languageserver/src/value-providers/action-inputs.ts diff --git a/actions-languageserver/src/value-providers/job-environment.ts b/languageserver/src/value-providers/job-environment.ts similarity index 100% rename from actions-languageserver/src/value-providers/job-environment.ts rename to languageserver/src/value-providers/job-environment.ts diff --git a/actions-languageserver/src/value-providers/runs-on.ts b/languageserver/src/value-providers/runs-on.ts similarity index 100% rename from actions-languageserver/src/value-providers/runs-on.ts rename to languageserver/src/value-providers/runs-on.ts diff --git a/actions-languageserver/tsconfig.build.json b/languageserver/tsconfig.build.json similarity index 100% rename from actions-languageserver/tsconfig.build.json rename to languageserver/tsconfig.build.json diff --git a/actions-languageserver/tsconfig.json b/languageserver/tsconfig.json similarity index 100% rename from actions-languageserver/tsconfig.json rename to languageserver/tsconfig.json diff --git a/actions-languageservice/.prettierignore b/languageservice/.prettierignore similarity index 100% rename from actions-languageservice/.prettierignore rename to languageservice/.prettierignore diff --git a/actions-languageservice/README.md b/languageservice/README.md similarity index 100% rename from actions-languageservice/README.md rename to languageservice/README.md diff --git a/actions-languageservice/jest.config.js b/languageservice/jest.config.js similarity index 100% rename from actions-languageservice/jest.config.js rename to languageservice/jest.config.js diff --git a/actions-languageservice/package.json b/languageservice/package.json similarity index 100% rename from actions-languageservice/package.json rename to languageservice/package.json diff --git a/actions-languageservice/script/webhooks/get-body-params.ts b/languageservice/script/webhooks/get-body-params.ts similarity index 100% rename from actions-languageservice/script/webhooks/get-body-params.ts rename to languageservice/script/webhooks/get-body-params.ts diff --git a/actions-languageservice/script/webhooks/index.ts b/languageservice/script/webhooks/index.ts similarity index 100% rename from actions-languageservice/script/webhooks/index.ts rename to languageservice/script/webhooks/index.ts diff --git a/actions-languageservice/script/webhooks/webhook.ts b/languageservice/script/webhooks/webhook.ts similarity index 100% rename from actions-languageservice/script/webhooks/webhook.ts rename to languageservice/script/webhooks/webhook.ts diff --git a/actions-languageservice/src/action.test.ts b/languageservice/src/action.test.ts similarity index 100% rename from actions-languageservice/src/action.test.ts rename to languageservice/src/action.test.ts diff --git a/actions-languageservice/src/action.ts b/languageservice/src/action.ts similarity index 100% rename from actions-languageservice/src/action.ts rename to languageservice/src/action.ts diff --git a/actions-languageservice/src/complete.expressions.test.ts b/languageservice/src/complete.expressions.test.ts similarity index 100% rename from actions-languageservice/src/complete.expressions.test.ts rename to languageservice/src/complete.expressions.test.ts diff --git a/actions-languageservice/src/complete.reusable-workflows.test.ts b/languageservice/src/complete.reusable-workflows.test.ts similarity index 100% rename from actions-languageservice/src/complete.reusable-workflows.test.ts rename to languageservice/src/complete.reusable-workflows.test.ts diff --git a/actions-languageservice/src/complete.test.ts b/languageservice/src/complete.test.ts similarity index 100% rename from actions-languageservice/src/complete.test.ts rename to languageservice/src/complete.test.ts diff --git a/actions-languageservice/src/complete.ts b/languageservice/src/complete.ts similarity index 100% rename from actions-languageservice/src/complete.ts rename to languageservice/src/complete.ts diff --git a/actions-languageservice/src/context-providers/config.ts b/languageservice/src/context-providers/config.ts similarity index 100% rename from actions-languageservice/src/context-providers/config.ts rename to languageservice/src/context-providers/config.ts diff --git a/actions-languageservice/src/context-providers/default.ts b/languageservice/src/context-providers/default.ts similarity index 100% rename from actions-languageservice/src/context-providers/default.ts rename to languageservice/src/context-providers/default.ts diff --git a/actions-languageservice/src/context-providers/descriptions.json b/languageservice/src/context-providers/descriptions.json similarity index 100% rename from actions-languageservice/src/context-providers/descriptions.json rename to languageservice/src/context-providers/descriptions.json diff --git a/actions-languageservice/src/context-providers/descriptions.ts b/languageservice/src/context-providers/descriptions.ts similarity index 100% rename from actions-languageservice/src/context-providers/descriptions.ts rename to languageservice/src/context-providers/descriptions.ts diff --git a/actions-languageservice/src/context-providers/descriptionsSchema.json b/languageservice/src/context-providers/descriptionsSchema.json similarity index 100% rename from actions-languageservice/src/context-providers/descriptionsSchema.json rename to languageservice/src/context-providers/descriptionsSchema.json diff --git a/actions-languageservice/src/context-providers/env.ts b/languageservice/src/context-providers/env.ts similarity index 100% rename from actions-languageservice/src/context-providers/env.ts rename to languageservice/src/context-providers/env.ts diff --git a/actions-languageservice/src/context-providers/events/eventPayloads.ts b/languageservice/src/context-providers/events/eventPayloads.ts similarity index 100% rename from actions-languageservice/src/context-providers/events/eventPayloads.ts rename to languageservice/src/context-providers/events/eventPayloads.ts diff --git a/actions-languageservice/src/context-providers/events/schedule.json b/languageservice/src/context-providers/events/schedule.json similarity index 100% rename from actions-languageservice/src/context-providers/events/schedule.json rename to languageservice/src/context-providers/events/schedule.json diff --git a/actions-languageservice/src/context-providers/events/webhooks.json b/languageservice/src/context-providers/events/webhooks.json similarity index 100% rename from actions-languageservice/src/context-providers/events/webhooks.json rename to languageservice/src/context-providers/events/webhooks.json diff --git a/actions-languageservice/src/context-providers/events/workflow_call.json b/languageservice/src/context-providers/events/workflow_call.json similarity index 100% rename from actions-languageservice/src/context-providers/events/workflow_call.json rename to languageservice/src/context-providers/events/workflow_call.json diff --git a/actions-languageservice/src/context-providers/github.test.ts b/languageservice/src/context-providers/github.test.ts similarity index 100% rename from actions-languageservice/src/context-providers/github.test.ts rename to languageservice/src/context-providers/github.test.ts diff --git a/actions-languageservice/src/context-providers/github.ts b/languageservice/src/context-providers/github.ts similarity index 100% rename from actions-languageservice/src/context-providers/github.ts rename to languageservice/src/context-providers/github.ts diff --git a/actions-languageservice/src/context-providers/inputs.ts b/languageservice/src/context-providers/inputs.ts similarity index 100% rename from actions-languageservice/src/context-providers/inputs.ts rename to languageservice/src/context-providers/inputs.ts diff --git a/actions-languageservice/src/context-providers/job.ts b/languageservice/src/context-providers/job.ts similarity index 100% rename from actions-languageservice/src/context-providers/job.ts rename to languageservice/src/context-providers/job.ts diff --git a/actions-languageservice/src/context-providers/matrix.test.ts b/languageservice/src/context-providers/matrix.test.ts similarity index 100% rename from actions-languageservice/src/context-providers/matrix.test.ts rename to languageservice/src/context-providers/matrix.test.ts diff --git a/actions-languageservice/src/context-providers/matrix.ts b/languageservice/src/context-providers/matrix.ts similarity index 100% rename from actions-languageservice/src/context-providers/matrix.ts rename to languageservice/src/context-providers/matrix.ts diff --git a/actions-languageservice/src/context-providers/needs.test.ts b/languageservice/src/context-providers/needs.test.ts similarity index 100% rename from actions-languageservice/src/context-providers/needs.test.ts rename to languageservice/src/context-providers/needs.test.ts diff --git a/actions-languageservice/src/context-providers/needs.ts b/languageservice/src/context-providers/needs.ts similarity index 100% rename from actions-languageservice/src/context-providers/needs.ts rename to languageservice/src/context-providers/needs.ts diff --git a/actions-languageservice/src/context-providers/steps.ts b/languageservice/src/context-providers/steps.ts similarity index 100% rename from actions-languageservice/src/context-providers/steps.ts rename to languageservice/src/context-providers/steps.ts diff --git a/actions-languageservice/src/context-providers/strategy.ts b/languageservice/src/context-providers/strategy.ts similarity index 100% rename from actions-languageservice/src/context-providers/strategy.ts rename to languageservice/src/context-providers/strategy.ts diff --git a/actions-languageservice/src/context/workflow-context.test.ts b/languageservice/src/context/workflow-context.test.ts similarity index 100% rename from actions-languageservice/src/context/workflow-context.test.ts rename to languageservice/src/context/workflow-context.test.ts diff --git a/actions-languageservice/src/context/workflow-context.ts b/languageservice/src/context/workflow-context.ts similarity index 100% rename from actions-languageservice/src/context/workflow-context.ts rename to languageservice/src/context/workflow-context.ts diff --git a/actions-languageservice/src/description-providers/reusable-job-inputs.ts b/languageservice/src/description-providers/reusable-job-inputs.ts similarity index 100% rename from actions-languageservice/src/description-providers/reusable-job-inputs.ts rename to languageservice/src/description-providers/reusable-job-inputs.ts diff --git a/actions-languageservice/src/document-links.test.ts b/languageservice/src/document-links.test.ts similarity index 100% rename from actions-languageservice/src/document-links.test.ts rename to languageservice/src/document-links.test.ts diff --git a/actions-languageservice/src/document-links.ts b/languageservice/src/document-links.ts similarity index 100% rename from actions-languageservice/src/document-links.ts rename to languageservice/src/document-links.ts diff --git a/actions-languageservice/src/expression-hover/expression-pos.test.ts b/languageservice/src/expression-hover/expression-pos.test.ts similarity index 100% rename from actions-languageservice/src/expression-hover/expression-pos.test.ts rename to languageservice/src/expression-hover/expression-pos.test.ts diff --git a/actions-languageservice/src/expression-hover/expression-pos.ts b/languageservice/src/expression-hover/expression-pos.ts similarity index 100% rename from actions-languageservice/src/expression-hover/expression-pos.ts rename to languageservice/src/expression-hover/expression-pos.ts diff --git a/actions-languageservice/src/expression-hover/pos-range.ts b/languageservice/src/expression-hover/pos-range.ts similarity index 100% rename from actions-languageservice/src/expression-hover/pos-range.ts rename to languageservice/src/expression-hover/pos-range.ts diff --git a/actions-languageservice/src/expression-hover/visitor.test.ts b/languageservice/src/expression-hover/visitor.test.ts similarity index 100% rename from actions-languageservice/src/expression-hover/visitor.test.ts rename to languageservice/src/expression-hover/visitor.test.ts diff --git a/actions-languageservice/src/expression-hover/visitor.ts b/languageservice/src/expression-hover/visitor.ts similarity index 100% rename from actions-languageservice/src/expression-hover/visitor.ts rename to languageservice/src/expression-hover/visitor.ts diff --git a/actions-languageservice/src/expression-validation/error-dictionary.ts b/languageservice/src/expression-validation/error-dictionary.ts similarity index 100% rename from actions-languageservice/src/expression-validation/error-dictionary.ts rename to languageservice/src/expression-validation/error-dictionary.ts diff --git a/actions-languageservice/src/expression-validation/functions.ts b/languageservice/src/expression-validation/functions.ts similarity index 100% rename from actions-languageservice/src/expression-validation/functions.ts rename to languageservice/src/expression-validation/functions.ts diff --git a/actions-languageservice/src/hover.expressions.test.ts b/languageservice/src/hover.expressions.test.ts similarity index 100% rename from actions-languageservice/src/hover.expressions.test.ts rename to languageservice/src/hover.expressions.test.ts diff --git a/actions-languageservice/src/hover.reusable-workflow.test.ts b/languageservice/src/hover.reusable-workflow.test.ts similarity index 100% rename from actions-languageservice/src/hover.reusable-workflow.test.ts rename to languageservice/src/hover.reusable-workflow.test.ts diff --git a/actions-languageservice/src/hover.test.ts b/languageservice/src/hover.test.ts similarity index 100% rename from actions-languageservice/src/hover.test.ts rename to languageservice/src/hover.test.ts diff --git a/actions-languageservice/src/hover.ts b/languageservice/src/hover.ts similarity index 100% rename from actions-languageservice/src/hover.ts rename to languageservice/src/hover.ts diff --git a/actions-languageservice/src/index.ts b/languageservice/src/index.ts similarity index 100% rename from actions-languageservice/src/index.ts rename to languageservice/src/index.ts diff --git a/actions-languageservice/src/log.ts b/languageservice/src/log.ts similarity index 100% rename from actions-languageservice/src/log.ts rename to languageservice/src/log.ts diff --git a/actions-languageservice/src/nulltrace.ts b/languageservice/src/nulltrace.ts similarity index 100% rename from actions-languageservice/src/nulltrace.ts rename to languageservice/src/nulltrace.ts diff --git a/actions-languageservice/src/test-utils/cursor-position.test.ts b/languageservice/src/test-utils/cursor-position.test.ts similarity index 100% rename from actions-languageservice/src/test-utils/cursor-position.test.ts rename to languageservice/src/test-utils/cursor-position.test.ts diff --git a/actions-languageservice/src/test-utils/cursor-position.ts b/languageservice/src/test-utils/cursor-position.ts similarity index 100% rename from actions-languageservice/src/test-utils/cursor-position.ts rename to languageservice/src/test-utils/cursor-position.ts diff --git a/actions-languageservice/src/test-utils/document.ts b/languageservice/src/test-utils/document.ts similarity index 100% rename from actions-languageservice/src/test-utils/document.ts rename to languageservice/src/test-utils/document.ts diff --git a/actions-languageservice/src/test-utils/logger.ts b/languageservice/src/test-utils/logger.ts similarity index 100% rename from actions-languageservice/src/test-utils/logger.ts rename to languageservice/src/test-utils/logger.ts diff --git a/actions-languageservice/src/test-utils/test-file-provider.ts b/languageservice/src/test-utils/test-file-provider.ts similarity index 100% rename from actions-languageservice/src/test-utils/test-file-provider.ts rename to languageservice/src/test-utils/test-file-provider.ts diff --git a/actions-languageservice/src/test-utils/test-workflow-context.ts b/languageservice/src/test-utils/test-workflow-context.ts similarity index 100% rename from actions-languageservice/src/test-utils/test-workflow-context.ts rename to languageservice/src/test-utils/test-workflow-context.ts diff --git a/actions-languageservice/src/utils/expression-detection.ts b/languageservice/src/utils/expression-detection.ts similarity index 100% rename from actions-languageservice/src/utils/expression-detection.ts rename to languageservice/src/utils/expression-detection.ts diff --git a/actions-languageservice/src/utils/find-token.test.ts b/languageservice/src/utils/find-token.test.ts similarity index 100% rename from actions-languageservice/src/utils/find-token.test.ts rename to languageservice/src/utils/find-token.test.ts diff --git a/actions-languageservice/src/utils/find-token.ts b/languageservice/src/utils/find-token.ts similarity index 100% rename from actions-languageservice/src/utils/find-token.ts rename to languageservice/src/utils/find-token.ts diff --git a/actions-languageservice/src/utils/indentation-guesser.ts b/languageservice/src/utils/indentation-guesser.ts similarity index 100% rename from actions-languageservice/src/utils/indentation-guesser.ts rename to languageservice/src/utils/indentation-guesser.ts diff --git a/actions-languageservice/src/utils/range.ts b/languageservice/src/utils/range.ts similarity index 100% rename from actions-languageservice/src/utils/range.ts rename to languageservice/src/utils/range.ts diff --git a/actions-languageservice/src/utils/rel-char-pos.ts b/languageservice/src/utils/rel-char-pos.ts similarity index 100% rename from actions-languageservice/src/utils/rel-char-pos.ts rename to languageservice/src/utils/rel-char-pos.ts diff --git a/actions-languageservice/src/utils/scalar-to-data.ts b/languageservice/src/utils/scalar-to-data.ts similarity index 100% rename from actions-languageservice/src/utils/scalar-to-data.ts rename to languageservice/src/utils/scalar-to-data.ts diff --git a/actions-languageservice/src/utils/transform.test.ts b/languageservice/src/utils/transform.test.ts similarity index 100% rename from actions-languageservice/src/utils/transform.test.ts rename to languageservice/src/utils/transform.test.ts diff --git a/actions-languageservice/src/utils/transform.ts b/languageservice/src/utils/transform.ts similarity index 100% rename from actions-languageservice/src/utils/transform.ts rename to languageservice/src/utils/transform.ts diff --git a/actions-languageservice/src/validate-action.ts b/languageservice/src/validate-action.ts similarity index 100% rename from actions-languageservice/src/validate-action.ts rename to languageservice/src/validate-action.ts diff --git a/actions-languageservice/src/validate.actions.test.ts b/languageservice/src/validate.actions.test.ts similarity index 100% rename from actions-languageservice/src/validate.actions.test.ts rename to languageservice/src/validate.actions.test.ts diff --git a/actions-languageservice/src/validate.expressions.test.ts b/languageservice/src/validate.expressions.test.ts similarity index 100% rename from actions-languageservice/src/validate.expressions.test.ts rename to languageservice/src/validate.expressions.test.ts diff --git a/actions-languageservice/src/validate.test.ts b/languageservice/src/validate.test.ts similarity index 100% rename from actions-languageservice/src/validate.test.ts rename to languageservice/src/validate.test.ts diff --git a/actions-languageservice/src/validate.ts b/languageservice/src/validate.ts similarity index 100% rename from actions-languageservice/src/validate.ts rename to languageservice/src/validate.ts diff --git a/actions-languageservice/src/validate.workflow-references.test.ts b/languageservice/src/validate.workflow-references.test.ts similarity index 100% rename from actions-languageservice/src/validate.workflow-references.test.ts rename to languageservice/src/validate.workflow-references.test.ts diff --git a/actions-languageservice/src/value-providers/config.ts b/languageservice/src/value-providers/config.ts similarity index 100% rename from actions-languageservice/src/value-providers/config.ts rename to languageservice/src/value-providers/config.ts diff --git a/actions-languageservice/src/value-providers/default.ts b/languageservice/src/value-providers/default.ts similarity index 100% rename from actions-languageservice/src/value-providers/default.ts rename to languageservice/src/value-providers/default.ts diff --git a/actions-languageservice/src/value-providers/definition.ts b/languageservice/src/value-providers/definition.ts similarity index 100% rename from actions-languageservice/src/value-providers/definition.ts rename to languageservice/src/value-providers/definition.ts diff --git a/actions-languageservice/src/value-providers/needs.ts b/languageservice/src/value-providers/needs.ts similarity index 100% rename from actions-languageservice/src/value-providers/needs.ts rename to languageservice/src/value-providers/needs.ts diff --git a/actions-languageservice/src/value-providers/reusable-job-inputs.ts b/languageservice/src/value-providers/reusable-job-inputs.ts similarity index 100% rename from actions-languageservice/src/value-providers/reusable-job-inputs.ts rename to languageservice/src/value-providers/reusable-job-inputs.ts diff --git a/actions-languageservice/src/value-providers/strings-to-values.ts b/languageservice/src/value-providers/strings-to-values.ts similarity index 100% rename from actions-languageservice/src/value-providers/strings-to-values.ts rename to languageservice/src/value-providers/strings-to-values.ts diff --git a/actions-languageservice/tsconfig.build.json b/languageservice/tsconfig.build.json similarity index 100% rename from actions-languageservice/tsconfig.build.json rename to languageservice/tsconfig.build.json diff --git a/actions-languageservice/tsconfig.json b/languageservice/tsconfig.json similarity index 100% rename from actions-languageservice/tsconfig.json rename to languageservice/tsconfig.json diff --git a/actions-workflow-parser/.eslintrc.json b/workflow-parser/.eslintrc.json similarity index 100% rename from actions-workflow-parser/.eslintrc.json rename to workflow-parser/.eslintrc.json diff --git a/actions-workflow-parser/.gitignore b/workflow-parser/.gitignore similarity index 100% rename from actions-workflow-parser/.gitignore rename to workflow-parser/.gitignore diff --git a/actions-workflow-parser/.npmrc b/workflow-parser/.npmrc similarity index 100% rename from actions-workflow-parser/.npmrc rename to workflow-parser/.npmrc diff --git a/actions-workflow-parser/.prettierignore b/workflow-parser/.prettierignore similarity index 100% rename from actions-workflow-parser/.prettierignore rename to workflow-parser/.prettierignore diff --git a/actions-workflow-parser/.vscode/launch.json b/workflow-parser/.vscode/launch.json similarity index 100% rename from actions-workflow-parser/.vscode/launch.json rename to workflow-parser/.vscode/launch.json diff --git a/actions-workflow-parser/jest.config.js b/workflow-parser/jest.config.js similarity index 100% rename from actions-workflow-parser/jest.config.js rename to workflow-parser/jest.config.js diff --git a/actions-workflow-parser/package.json b/workflow-parser/package.json similarity index 100% rename from actions-workflow-parser/package.json rename to workflow-parser/package.json diff --git a/actions-workflow-parser/src/expressions.test.ts b/workflow-parser/src/expressions.test.ts similarity index 100% rename from actions-workflow-parser/src/expressions.test.ts rename to workflow-parser/src/expressions.test.ts diff --git a/actions-workflow-parser/src/index.test.ts b/workflow-parser/src/index.test.ts similarity index 100% rename from actions-workflow-parser/src/index.test.ts rename to workflow-parser/src/index.test.ts diff --git a/actions-workflow-parser/src/index.ts b/workflow-parser/src/index.ts similarity index 100% rename from actions-workflow-parser/src/index.ts rename to workflow-parser/src/index.ts diff --git a/actions-workflow-parser/src/model/convert.test.ts b/workflow-parser/src/model/convert.test.ts similarity index 100% rename from actions-workflow-parser/src/model/convert.test.ts rename to workflow-parser/src/model/convert.test.ts diff --git a/actions-workflow-parser/src/model/convert.ts b/workflow-parser/src/model/convert.ts similarity index 100% rename from actions-workflow-parser/src/model/convert.ts rename to workflow-parser/src/model/convert.ts diff --git a/actions-workflow-parser/src/model/converter/concurrency.ts b/workflow-parser/src/model/converter/concurrency.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/concurrency.ts rename to workflow-parser/src/model/converter/concurrency.ts diff --git a/actions-workflow-parser/src/model/converter/container.ts b/workflow-parser/src/model/converter/container.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/container.ts rename to workflow-parser/src/model/converter/container.ts diff --git a/actions-workflow-parser/src/model/converter/cron-constants.ts b/workflow-parser/src/model/converter/cron-constants.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/cron-constants.ts rename to workflow-parser/src/model/converter/cron-constants.ts diff --git a/actions-workflow-parser/src/model/converter/cron.test.ts b/workflow-parser/src/model/converter/cron.test.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/cron.test.ts rename to workflow-parser/src/model/converter/cron.test.ts diff --git a/actions-workflow-parser/src/model/converter/cron.ts b/workflow-parser/src/model/converter/cron.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/cron.ts rename to workflow-parser/src/model/converter/cron.ts diff --git a/actions-workflow-parser/src/model/converter/events.ts b/workflow-parser/src/model/converter/events.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/events.ts rename to workflow-parser/src/model/converter/events.ts diff --git a/actions-workflow-parser/src/model/converter/handle-errors.ts b/workflow-parser/src/model/converter/handle-errors.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/handle-errors.ts rename to workflow-parser/src/model/converter/handle-errors.ts diff --git a/actions-workflow-parser/src/model/converter/id-builder.test.ts b/workflow-parser/src/model/converter/id-builder.test.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/id-builder.test.ts rename to workflow-parser/src/model/converter/id-builder.test.ts diff --git a/actions-workflow-parser/src/model/converter/id-builder.ts b/workflow-parser/src/model/converter/id-builder.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/id-builder.ts rename to workflow-parser/src/model/converter/id-builder.ts diff --git a/actions-workflow-parser/src/model/converter/job.ts b/workflow-parser/src/model/converter/job.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/job.ts rename to workflow-parser/src/model/converter/job.ts diff --git a/actions-workflow-parser/src/model/converter/job/environment.ts b/workflow-parser/src/model/converter/job/environment.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/job/environment.ts rename to workflow-parser/src/model/converter/job/environment.ts diff --git a/actions-workflow-parser/src/model/converter/job/inputs.ts b/workflow-parser/src/model/converter/job/inputs.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/job/inputs.ts rename to workflow-parser/src/model/converter/job/inputs.ts diff --git a/actions-workflow-parser/src/model/converter/job/runs-on.ts b/workflow-parser/src/model/converter/job/runs-on.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/job/runs-on.ts rename to workflow-parser/src/model/converter/job/runs-on.ts diff --git a/actions-workflow-parser/src/model/converter/job/secrets.ts b/workflow-parser/src/model/converter/job/secrets.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/job/secrets.ts rename to workflow-parser/src/model/converter/job/secrets.ts diff --git a/actions-workflow-parser/src/model/converter/jobs.ts b/workflow-parser/src/model/converter/jobs.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/jobs.ts rename to workflow-parser/src/model/converter/jobs.ts diff --git a/actions-workflow-parser/src/model/converter/referencedWorkflow.ts b/workflow-parser/src/model/converter/referencedWorkflow.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/referencedWorkflow.ts rename to workflow-parser/src/model/converter/referencedWorkflow.ts diff --git a/actions-workflow-parser/src/model/converter/steps.ts b/workflow-parser/src/model/converter/steps.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/steps.ts rename to workflow-parser/src/model/converter/steps.ts diff --git a/actions-workflow-parser/src/model/converter/string-list.ts b/workflow-parser/src/model/converter/string-list.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/string-list.ts rename to workflow-parser/src/model/converter/string-list.ts diff --git a/actions-workflow-parser/src/model/converter/workflow-dispatch.ts b/workflow-parser/src/model/converter/workflow-dispatch.ts similarity index 100% rename from actions-workflow-parser/src/model/converter/workflow-dispatch.ts rename to workflow-parser/src/model/converter/workflow-dispatch.ts diff --git a/actions-workflow-parser/src/model/type-guards.ts b/workflow-parser/src/model/type-guards.ts similarity index 100% rename from actions-workflow-parser/src/model/type-guards.ts rename to workflow-parser/src/model/type-guards.ts diff --git a/actions-workflow-parser/src/model/workflow-template.ts b/workflow-parser/src/model/workflow-template.ts similarity index 100% rename from actions-workflow-parser/src/model/workflow-template.ts rename to workflow-parser/src/model/workflow-template.ts diff --git a/actions-workflow-parser/src/templates/allowed-context.ts b/workflow-parser/src/templates/allowed-context.ts similarity index 100% rename from actions-workflow-parser/src/templates/allowed-context.ts rename to workflow-parser/src/templates/allowed-context.ts diff --git a/actions-workflow-parser/src/templates/json-object-reader.ts b/workflow-parser/src/templates/json-object-reader.ts similarity index 100% rename from actions-workflow-parser/src/templates/json-object-reader.ts rename to workflow-parser/src/templates/json-object-reader.ts diff --git a/actions-workflow-parser/src/templates/object-reader.ts b/workflow-parser/src/templates/object-reader.ts similarity index 100% rename from actions-workflow-parser/src/templates/object-reader.ts rename to workflow-parser/src/templates/object-reader.ts diff --git a/actions-workflow-parser/src/templates/parse-event.ts b/workflow-parser/src/templates/parse-event.ts similarity index 100% rename from actions-workflow-parser/src/templates/parse-event.ts rename to workflow-parser/src/templates/parse-event.ts diff --git a/actions-workflow-parser/src/templates/schema/boolean-definition.ts b/workflow-parser/src/templates/schema/boolean-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/boolean-definition.ts rename to workflow-parser/src/templates/schema/boolean-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/definition-info.ts b/workflow-parser/src/templates/schema/definition-info.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/definition-info.ts rename to workflow-parser/src/templates/schema/definition-info.ts diff --git a/actions-workflow-parser/src/templates/schema/definition-type.ts b/workflow-parser/src/templates/schema/definition-type.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/definition-type.ts rename to workflow-parser/src/templates/schema/definition-type.ts diff --git a/actions-workflow-parser/src/templates/schema/definition.ts b/workflow-parser/src/templates/schema/definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/definition.ts rename to workflow-parser/src/templates/schema/definition.ts diff --git a/actions-workflow-parser/src/templates/schema/index.ts b/workflow-parser/src/templates/schema/index.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/index.ts rename to workflow-parser/src/templates/schema/index.ts diff --git a/actions-workflow-parser/src/templates/schema/mapping-definition.ts b/workflow-parser/src/templates/schema/mapping-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/mapping-definition.ts rename to workflow-parser/src/templates/schema/mapping-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/null-definition.ts b/workflow-parser/src/templates/schema/null-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/null-definition.ts rename to workflow-parser/src/templates/schema/null-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/number-definition.ts b/workflow-parser/src/templates/schema/number-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/number-definition.ts rename to workflow-parser/src/templates/schema/number-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/one-of-definition.ts b/workflow-parser/src/templates/schema/one-of-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/one-of-definition.ts rename to workflow-parser/src/templates/schema/one-of-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/property-definition.ts b/workflow-parser/src/templates/schema/property-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/property-definition.ts rename to workflow-parser/src/templates/schema/property-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/scalar-definition.ts b/workflow-parser/src/templates/schema/scalar-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/scalar-definition.ts rename to workflow-parser/src/templates/schema/scalar-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/sequence-definition.ts b/workflow-parser/src/templates/schema/sequence-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/sequence-definition.ts rename to workflow-parser/src/templates/schema/sequence-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/string-definition.ts b/workflow-parser/src/templates/schema/string-definition.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/string-definition.ts rename to workflow-parser/src/templates/schema/string-definition.ts diff --git a/actions-workflow-parser/src/templates/schema/template-schema.ts b/workflow-parser/src/templates/schema/template-schema.ts similarity index 100% rename from actions-workflow-parser/src/templates/schema/template-schema.ts rename to workflow-parser/src/templates/schema/template-schema.ts diff --git a/actions-workflow-parser/src/templates/template-constants.ts b/workflow-parser/src/templates/template-constants.ts similarity index 100% rename from actions-workflow-parser/src/templates/template-constants.ts rename to workflow-parser/src/templates/template-constants.ts diff --git a/actions-workflow-parser/src/templates/template-context.ts b/workflow-parser/src/templates/template-context.ts similarity index 100% rename from actions-workflow-parser/src/templates/template-context.ts rename to workflow-parser/src/templates/template-context.ts diff --git a/actions-workflow-parser/src/templates/template-reader.ts b/workflow-parser/src/templates/template-reader.ts similarity index 100% rename from actions-workflow-parser/src/templates/template-reader.ts rename to workflow-parser/src/templates/template-reader.ts diff --git a/actions-workflow-parser/src/templates/template-validation-error.ts b/workflow-parser/src/templates/template-validation-error.ts similarity index 100% rename from actions-workflow-parser/src/templates/template-validation-error.ts rename to workflow-parser/src/templates/template-validation-error.ts diff --git a/actions-workflow-parser/src/templates/tokens/basic-expression-token.ts b/workflow-parser/src/templates/tokens/basic-expression-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/basic-expression-token.ts rename to workflow-parser/src/templates/tokens/basic-expression-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/boolean-token.ts b/workflow-parser/src/templates/tokens/boolean-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/boolean-token.ts rename to workflow-parser/src/templates/tokens/boolean-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/expression-token.ts b/workflow-parser/src/templates/tokens/expression-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/expression-token.ts rename to workflow-parser/src/templates/tokens/expression-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/index.ts b/workflow-parser/src/templates/tokens/index.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/index.ts rename to workflow-parser/src/templates/tokens/index.ts diff --git a/actions-workflow-parser/src/templates/tokens/insert-expression-token.ts b/workflow-parser/src/templates/tokens/insert-expression-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/insert-expression-token.ts rename to workflow-parser/src/templates/tokens/insert-expression-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/key-value-pair.ts b/workflow-parser/src/templates/tokens/key-value-pair.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/key-value-pair.ts rename to workflow-parser/src/templates/tokens/key-value-pair.ts diff --git a/actions-workflow-parser/src/templates/tokens/literal-token.ts b/workflow-parser/src/templates/tokens/literal-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/literal-token.ts rename to workflow-parser/src/templates/tokens/literal-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/mapping-token.ts b/workflow-parser/src/templates/tokens/mapping-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/mapping-token.ts rename to workflow-parser/src/templates/tokens/mapping-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/null-token.ts b/workflow-parser/src/templates/tokens/null-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/null-token.ts rename to workflow-parser/src/templates/tokens/null-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/number-token.ts b/workflow-parser/src/templates/tokens/number-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/number-token.ts rename to workflow-parser/src/templates/tokens/number-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/scalar-token.ts b/workflow-parser/src/templates/tokens/scalar-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/scalar-token.ts rename to workflow-parser/src/templates/tokens/scalar-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/sequence-token.ts b/workflow-parser/src/templates/tokens/sequence-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/sequence-token.ts rename to workflow-parser/src/templates/tokens/sequence-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/serialization.ts b/workflow-parser/src/templates/tokens/serialization.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/serialization.ts rename to workflow-parser/src/templates/tokens/serialization.ts diff --git a/actions-workflow-parser/src/templates/tokens/string-token.ts b/workflow-parser/src/templates/tokens/string-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/string-token.ts rename to workflow-parser/src/templates/tokens/string-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/template-token.test.ts b/workflow-parser/src/templates/tokens/template-token.test.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/template-token.test.ts rename to workflow-parser/src/templates/tokens/template-token.test.ts diff --git a/actions-workflow-parser/src/templates/tokens/template-token.ts b/workflow-parser/src/templates/tokens/template-token.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/template-token.ts rename to workflow-parser/src/templates/tokens/template-token.ts diff --git a/actions-workflow-parser/src/templates/tokens/token-range.ts b/workflow-parser/src/templates/tokens/token-range.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/token-range.ts rename to workflow-parser/src/templates/tokens/token-range.ts diff --git a/actions-workflow-parser/src/templates/tokens/traversal-state.ts b/workflow-parser/src/templates/tokens/traversal-state.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/traversal-state.ts rename to workflow-parser/src/templates/tokens/traversal-state.ts diff --git a/actions-workflow-parser/src/templates/tokens/type-guards.ts b/workflow-parser/src/templates/tokens/type-guards.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/type-guards.ts rename to workflow-parser/src/templates/tokens/type-guards.ts diff --git a/actions-workflow-parser/src/templates/tokens/types.ts b/workflow-parser/src/templates/tokens/types.ts similarity index 100% rename from actions-workflow-parser/src/templates/tokens/types.ts rename to workflow-parser/src/templates/tokens/types.ts diff --git a/actions-workflow-parser/src/templates/trace-writer.ts b/workflow-parser/src/templates/trace-writer.ts similarity index 100% rename from actions-workflow-parser/src/templates/trace-writer.ts rename to workflow-parser/src/templates/trace-writer.ts diff --git a/actions-workflow-parser/src/test-utils/null-trace.ts b/workflow-parser/src/test-utils/null-trace.ts similarity index 100% rename from actions-workflow-parser/src/test-utils/null-trace.ts rename to workflow-parser/src/test-utils/null-trace.ts diff --git a/actions-workflow-parser/src/workflow-v1.0.json b/workflow-parser/src/workflow-v1.0.json similarity index 100% rename from actions-workflow-parser/src/workflow-v1.0.json rename to workflow-parser/src/workflow-v1.0.json diff --git a/actions-workflow-parser/src/workflows/file-provider.ts b/workflow-parser/src/workflows/file-provider.ts similarity index 100% rename from actions-workflow-parser/src/workflows/file-provider.ts rename to workflow-parser/src/workflows/file-provider.ts diff --git a/actions-workflow-parser/src/workflows/file-reference.test.ts b/workflow-parser/src/workflows/file-reference.test.ts similarity index 100% rename from actions-workflow-parser/src/workflows/file-reference.test.ts rename to workflow-parser/src/workflows/file-reference.test.ts diff --git a/actions-workflow-parser/src/workflows/file-reference.ts b/workflow-parser/src/workflows/file-reference.ts similarity index 100% rename from actions-workflow-parser/src/workflows/file-reference.ts rename to workflow-parser/src/workflows/file-reference.ts diff --git a/actions-workflow-parser/src/workflows/file.ts b/workflow-parser/src/workflows/file.ts similarity index 100% rename from actions-workflow-parser/src/workflows/file.ts rename to workflow-parser/src/workflows/file.ts diff --git a/actions-workflow-parser/src/workflows/workflow-constants.ts b/workflow-parser/src/workflows/workflow-constants.ts similarity index 100% rename from actions-workflow-parser/src/workflows/workflow-constants.ts rename to workflow-parser/src/workflows/workflow-constants.ts diff --git a/actions-workflow-parser/src/workflows/workflow-parser.test.ts b/workflow-parser/src/workflows/workflow-parser.test.ts similarity index 100% rename from actions-workflow-parser/src/workflows/workflow-parser.test.ts rename to workflow-parser/src/workflows/workflow-parser.test.ts diff --git a/actions-workflow-parser/src/workflows/workflow-parser.ts b/workflow-parser/src/workflows/workflow-parser.ts similarity index 100% rename from actions-workflow-parser/src/workflows/workflow-parser.ts rename to workflow-parser/src/workflows/workflow-parser.ts diff --git a/actions-workflow-parser/src/workflows/workflow-schema.ts b/workflow-parser/src/workflows/workflow-schema.ts similarity index 100% rename from actions-workflow-parser/src/workflows/workflow-schema.ts rename to workflow-parser/src/workflows/workflow-schema.ts diff --git a/actions-workflow-parser/src/workflows/yaml-object-reader.test.ts b/workflow-parser/src/workflows/yaml-object-reader.test.ts similarity index 100% rename from actions-workflow-parser/src/workflows/yaml-object-reader.test.ts rename to workflow-parser/src/workflows/yaml-object-reader.test.ts diff --git a/actions-workflow-parser/src/workflows/yaml-object-reader.ts b/workflow-parser/src/workflows/yaml-object-reader.ts similarity index 100% rename from actions-workflow-parser/src/workflows/yaml-object-reader.ts rename to workflow-parser/src/workflows/yaml-object-reader.ts diff --git a/actions-workflow-parser/src/xlang.test.ts b/workflow-parser/src/xlang.test.ts similarity index 100% rename from actions-workflow-parser/src/xlang.test.ts rename to workflow-parser/src/xlang.test.ts diff --git a/actions-workflow-parser/testdata/reader/bad-character.yml b/workflow-parser/testdata/reader/bad-character.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/bad-character.yml rename to workflow-parser/testdata/reader/bad-character.yml diff --git a/actions-workflow-parser/testdata/reader/basic.yml b/workflow-parser/testdata/reader/basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/basic.yml rename to workflow-parser/testdata/reader/basic.yml diff --git a/actions-workflow-parser/testdata/reader/coercion-to-string.yml b/workflow-parser/testdata/reader/coercion-to-string.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/coercion-to-string.yml rename to workflow-parser/testdata/reader/coercion-to-string.yml diff --git a/actions-workflow-parser/testdata/reader/concurrency.yml b/workflow-parser/testdata/reader/concurrency.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/concurrency.yml rename to workflow-parser/testdata/reader/concurrency.yml diff --git a/actions-workflow-parser/testdata/reader/error.yml b/workflow-parser/testdata/reader/error.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/error.yml rename to workflow-parser/testdata/reader/error.yml diff --git a/actions-workflow-parser/testdata/reader/errors-anchor-tag.yml b/workflow-parser/testdata/reader/errors-anchor-tag.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-anchor-tag.yml rename to workflow-parser/testdata/reader/errors-anchor-tag.yml diff --git a/actions-workflow-parser/testdata/reader/errors-empty-expression.yml b/workflow-parser/testdata/reader/errors-empty-expression.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-empty-expression.yml rename to workflow-parser/testdata/reader/errors-empty-expression.yml diff --git a/actions-workflow-parser/testdata/reader/errors-expression-not-allowed.yml b/workflow-parser/testdata/reader/errors-expression-not-allowed.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-expression-not-allowed.yml rename to workflow-parser/testdata/reader/errors-expression-not-allowed.yml diff --git a/actions-workflow-parser/testdata/reader/errors-expression-not-closed.yml b/workflow-parser/testdata/reader/errors-expression-not-closed.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-expression-not-closed.yml rename to workflow-parser/testdata/reader/errors-expression-not-closed.yml diff --git a/actions-workflow-parser/testdata/reader/errors-expressions.yml b/workflow-parser/testdata/reader/errors-expressions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-expressions.yml rename to workflow-parser/testdata/reader/errors-expressions.yml diff --git a/actions-workflow-parser/testdata/reader/errors-insert.yml b/workflow-parser/testdata/reader/errors-insert.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-insert.yml rename to workflow-parser/testdata/reader/errors-insert.yml diff --git a/actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml b/workflow-parser/testdata/reader/errors-invalid-mapping-key.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml rename to workflow-parser/testdata/reader/errors-invalid-mapping-key.yml diff --git a/actions-workflow-parser/testdata/reader/errors-invalid-permissions.yml b/workflow-parser/testdata/reader/errors-invalid-permissions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-invalid-permissions.yml rename to workflow-parser/testdata/reader/errors-invalid-permissions.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-concurrency.yml b/workflow-parser/testdata/reader/errors-job-concurrency.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-concurrency.yml rename to workflow-parser/testdata/reader/errors-job-concurrency.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-id-empty.yml b/workflow-parser/testdata/reader/errors-job-id-empty.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-id-empty.yml rename to workflow-parser/testdata/reader/errors-job-id-empty.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-id-format.yml b/workflow-parser/testdata/reader/errors-job-id-format.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-id-format.yml rename to workflow-parser/testdata/reader/errors-job-id-format.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-id-leading-underscores.yml b/workflow-parser/testdata/reader/errors-job-id-leading-underscores.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-id-leading-underscores.yml rename to workflow-parser/testdata/reader/errors-job-id-leading-underscores.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-id-unique.yml b/workflow-parser/testdata/reader/errors-job-id-unique.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-id-unique.yml rename to workflow-parser/testdata/reader/errors-job-id-unique.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-needs-cycle.yml b/workflow-parser/testdata/reader/errors-job-needs-cycle.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-needs-cycle.yml rename to workflow-parser/testdata/reader/errors-job-needs-cycle.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-needs-no-start-node.yml b/workflow-parser/testdata/reader/errors-job-needs-no-start-node.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-needs-no-start-node.yml rename to workflow-parser/testdata/reader/errors-job-needs-no-start-node.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-needs-unknown-job.yml b/workflow-parser/testdata/reader/errors-job-needs-unknown-job.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-needs-unknown-job.yml rename to workflow-parser/testdata/reader/errors-job-needs-unknown-job.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-runs-on-and-uses.yml b/workflow-parser/testdata/reader/errors-job-runs-on-and-uses.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-runs-on-and-uses.yml rename to workflow-parser/testdata/reader/errors-job-runs-on-and-uses.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-runs-on-group-invalid-prefix.yml b/workflow-parser/testdata/reader/errors-job-runs-on-group-invalid-prefix.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-runs-on-group-invalid-prefix.yml rename to workflow-parser/testdata/reader/errors-job-runs-on-group-invalid-prefix.yml diff --git a/actions-workflow-parser/testdata/reader/errors-job-runs-on-missing.yml b/workflow-parser/testdata/reader/errors-job-runs-on-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-job-runs-on-missing.yml rename to workflow-parser/testdata/reader/errors-job-runs-on-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-jobs-at-least-one.yml b/workflow-parser/testdata/reader/errors-jobs-at-least-one.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-jobs-at-least-one.yml rename to workflow-parser/testdata/reader/errors-jobs-at-least-one.yml diff --git a/actions-workflow-parser/testdata/reader/errors-jobs-missing.yml b/workflow-parser/testdata/reader/errors-jobs-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-jobs-missing.yml rename to workflow-parser/testdata/reader/errors-jobs-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-matrix-bad-key.yml b/workflow-parser/testdata/reader/errors-matrix-bad-key.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-matrix-bad-key.yml rename to workflow-parser/testdata/reader/errors-matrix-bad-key.yml diff --git a/actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml b/workflow-parser/testdata/reader/errors-matrix-empty-vector.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml rename to workflow-parser/testdata/reader/errors-matrix-empty-vector.yml diff --git a/actions-workflow-parser/testdata/reader/errors-matrix-max-depth.yml b/workflow-parser/testdata/reader/errors-matrix-max-depth.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-matrix-max-depth.yml rename to workflow-parser/testdata/reader/errors-matrix-max-depth.yml diff --git a/actions-workflow-parser/testdata/reader/errors-max-depth.yml b/workflow-parser/testdata/reader/errors-max-depth.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-max-depth.yml rename to workflow-parser/testdata/reader/errors-max-depth.yml diff --git a/actions-workflow-parser/testdata/reader/errors-max-file-size.yml b/workflow-parser/testdata/reader/errors-max-file-size.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-max-file-size.yml rename to workflow-parser/testdata/reader/errors-max-file-size.yml diff --git a/actions-workflow-parser/testdata/reader/errors-max-job-limit-with-reusable-workflow.yml b/workflow-parser/testdata/reader/errors-max-job-limit-with-reusable-workflow.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-max-job-limit-with-reusable-workflow.yml rename to workflow-parser/testdata/reader/errors-max-job-limit-with-reusable-workflow.yml diff --git a/actions-workflow-parser/testdata/reader/errors-max-result-size.yml b/workflow-parser/testdata/reader/errors-max-result-size.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-max-result-size.yml rename to workflow-parser/testdata/reader/errors-max-result-size.yml diff --git a/actions-workflow-parser/testdata/reader/errors-on-workflow_call-input-type-missing.yml b/workflow-parser/testdata/reader/errors-on-workflow_call-input-type-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-on-workflow_call-input-type-missing.yml rename to workflow-parser/testdata/reader/errors-on-workflow_call-input-type-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-on-workflow_call-input-unexpected-property.yml b/workflow-parser/testdata/reader/errors-on-workflow_call-input-unexpected-property.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-on-workflow_call-input-unexpected-property.yml rename to workflow-parser/testdata/reader/errors-on-workflow_call-input-unexpected-property.yml diff --git a/actions-workflow-parser/testdata/reader/errors-on-workflow_call-output.yml b/workflow-parser/testdata/reader/errors-on-workflow_call-output.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-on-workflow_call-output.yml rename to workflow-parser/testdata/reader/errors-on-workflow_call-output.yml diff --git a/actions-workflow-parser/testdata/reader/errors-parse-boolean.yml b/workflow-parser/testdata/reader/errors-parse-boolean.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-parse-boolean.yml rename to workflow-parser/testdata/reader/errors-parse-boolean.yml diff --git a/actions-workflow-parser/testdata/reader/errors-parse-float.yml b/workflow-parser/testdata/reader/errors-parse-float.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-parse-float.yml rename to workflow-parser/testdata/reader/errors-parse-float.yml diff --git a/actions-workflow-parser/testdata/reader/errors-parse-integer.yml b/workflow-parser/testdata/reader/errors-parse-integer.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-parse-integer.yml rename to workflow-parser/testdata/reader/errors-parse-integer.yml diff --git a/actions-workflow-parser/testdata/reader/errors-required-property-missing.yml b/workflow-parser/testdata/reader/errors-required-property-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-required-property-missing.yml rename to workflow-parser/testdata/reader/errors-required-property-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-required.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-required.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-required.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-required.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-type-mismatch.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-type-mismatch.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-type-mismatch.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-type-mismatch.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-undefined.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-undefined.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-undefined.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-inputs-undefined.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-depth-exceeded.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-depth-exceeded.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-depth-exceeded.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-depth-exceeded.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-job-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-job-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-job-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-job-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-workflow-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-workflow-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-workflow-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-job-level-from-caller-workflow-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-job-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-job-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-job-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-job-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-nested-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-required.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-required.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-required.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-required.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-undefined.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-undefined.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-undefined.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets-undefined.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-job-secrets.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-max-result-size.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-max-result-size.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-max-result-size.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-max-result-size.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-default.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-default.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-default.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-default.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-job-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-job-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-job-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-job-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-workflow-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-workflow-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-workflow-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-job-level-from-caller-workflow-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-actions-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-actions-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-actions-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-actions-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-checks-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-checks-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-checks-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-checks-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-contents-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-contents-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-contents-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-contents-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-deployments-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-deployments-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-deployments-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-deployments-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-discussions-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-discussions-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-discussions-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-discussions-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-id-token-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-id-token-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-id-token-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-id-token-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-issues-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-issues-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-issues-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-issues-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-packages-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-packages-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-packages-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-packages-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pages-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pages-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pages-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pages-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pull-requests-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pull-requests-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pull-requests-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-pull-requests-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-read-all-allowed-none.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-read-all-allowed-none.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-read-all-allowed-none.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-read-all-allowed-none.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-repository-projects-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-repository-projects-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-repository-projects-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-repository-projects-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-security-events-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-security-events-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-security-events-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-security-events-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-statuses-write.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-statuses-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-statuses-write.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-statuses-write.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-none.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-none.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-none.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-none.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-read-all.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-read-all.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-read-all.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-request-write-all-allowed-read-all.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-default.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-default.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-default.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-default.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-job-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-job-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-job-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-job-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml b/workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml rename to workflow-parser/testdata/reader/errors-reusable-workflow-permissions-not-allowed-workflow-level-from-caller-workflow-level.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-id.yml b/workflow-parser/testdata/reader/errors-step-id.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-id.yml rename to workflow-parser/testdata/reader/errors-step-id.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-if.yml b/workflow-parser/testdata/reader/errors-step-if.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-if.yml rename to workflow-parser/testdata/reader/errors-step-if.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml b/workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml rename to workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-run-missing.yml b/workflow-parser/testdata/reader/errors-step-run-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-run-missing.yml rename to workflow-parser/testdata/reader/errors-step-run-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-uses-missing.yml b/workflow-parser/testdata/reader/errors-step-uses-missing.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-uses-missing.yml rename to workflow-parser/testdata/reader/errors-step-uses-missing.yml diff --git a/actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml b/workflow-parser/testdata/reader/errors-step-uses-syntax.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml rename to workflow-parser/testdata/reader/errors-step-uses-syntax.yml diff --git a/actions-workflow-parser/testdata/reader/errors-unclosed-tokens.yml b/workflow-parser/testdata/reader/errors-unclosed-tokens.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-unclosed-tokens.yml rename to workflow-parser/testdata/reader/errors-unclosed-tokens.yml diff --git a/actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml b/workflow-parser/testdata/reader/errors-unexpected-mapping.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml rename to workflow-parser/testdata/reader/errors-unexpected-mapping.yml diff --git a/actions-workflow-parser/testdata/reader/errors-unexpected-sequence.yml b/workflow-parser/testdata/reader/errors-unexpected-sequence.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-unexpected-sequence.yml rename to workflow-parser/testdata/reader/errors-unexpected-sequence.yml diff --git a/actions-workflow-parser/testdata/reader/errors-value-already-defined.yml b/workflow-parser/testdata/reader/errors-value-already-defined.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-value-already-defined.yml rename to workflow-parser/testdata/reader/errors-value-already-defined.yml diff --git a/actions-workflow-parser/testdata/reader/errors-yaml-invalid-style.yml b/workflow-parser/testdata/reader/errors-yaml-invalid-style.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-yaml-invalid-style.yml rename to workflow-parser/testdata/reader/errors-yaml-invalid-style.yml diff --git a/actions-workflow-parser/testdata/reader/errors-yaml-tags-explicit-unsupported.yml b/workflow-parser/testdata/reader/errors-yaml-tags-explicit-unsupported.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/errors-yaml-tags-explicit-unsupported.yml rename to workflow-parser/testdata/reader/errors-yaml-tags-explicit-unsupported.yml diff --git a/actions-workflow-parser/testdata/reader/escape-html-values.yml b/workflow-parser/testdata/reader/escape-html-values.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/escape-html-values.yml rename to workflow-parser/testdata/reader/escape-html-values.yml diff --git a/actions-workflow-parser/testdata/reader/events-mapping-all.yml b/workflow-parser/testdata/reader/events-mapping-all.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-mapping-all.yml rename to workflow-parser/testdata/reader/events-mapping-all.yml diff --git a/actions-workflow-parser/testdata/reader/events-mapping-repo-dispatch.yml b/workflow-parser/testdata/reader/events-mapping-repo-dispatch.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-mapping-repo-dispatch.yml rename to workflow-parser/testdata/reader/events-mapping-repo-dispatch.yml diff --git a/actions-workflow-parser/testdata/reader/events-mapping.yml b/workflow-parser/testdata/reader/events-mapping.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-mapping.yml rename to workflow-parser/testdata/reader/events-mapping.yml diff --git a/actions-workflow-parser/testdata/reader/events-sequence.yml b/workflow-parser/testdata/reader/events-sequence.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-sequence.yml rename to workflow-parser/testdata/reader/events-sequence.yml diff --git a/actions-workflow-parser/testdata/reader/events-single-invalid-config.yml b/workflow-parser/testdata/reader/events-single-invalid-config.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-single-invalid-config.yml rename to workflow-parser/testdata/reader/events-single-invalid-config.yml diff --git a/actions-workflow-parser/testdata/reader/events-single-invalid.yml b/workflow-parser/testdata/reader/events-single-invalid.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-single-invalid.yml rename to workflow-parser/testdata/reader/events-single-invalid.yml diff --git a/actions-workflow-parser/testdata/reader/events-single-with-types.yml b/workflow-parser/testdata/reader/events-single-with-types.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-single-with-types.yml rename to workflow-parser/testdata/reader/events-single-with-types.yml diff --git a/actions-workflow-parser/testdata/reader/events-single.yml b/workflow-parser/testdata/reader/events-single.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/events-single.yml rename to workflow-parser/testdata/reader/events-single.yml diff --git a/actions-workflow-parser/testdata/reader/float-folded-style.yml b/workflow-parser/testdata/reader/float-folded-style.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/float-folded-style.yml rename to workflow-parser/testdata/reader/float-folded-style.yml diff --git a/actions-workflow-parser/testdata/reader/id-to-long.yml b/workflow-parser/testdata/reader/id-to-long.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/id-to-long.yml rename to workflow-parser/testdata/reader/id-to-long.yml diff --git a/actions-workflow-parser/testdata/reader/insert.yml b/workflow-parser/testdata/reader/insert.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/insert.yml rename to workflow-parser/testdata/reader/insert.yml diff --git a/actions-workflow-parser/testdata/reader/is-partial-rerun.yml b/workflow-parser/testdata/reader/is-partial-rerun.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/is-partial-rerun.yml rename to workflow-parser/testdata/reader/is-partial-rerun.yml diff --git a/actions-workflow-parser/testdata/reader/job-basic.yml b/workflow-parser/testdata/reader/job-basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-basic.yml rename to workflow-parser/testdata/reader/job-basic.yml diff --git a/actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml b/workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml rename to workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml diff --git a/actions-workflow-parser/testdata/reader/job-concurrency.yml b/workflow-parser/testdata/reader/job-concurrency.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-concurrency.yml rename to workflow-parser/testdata/reader/job-concurrency.yml diff --git a/actions-workflow-parser/testdata/reader/job-container-invalid-credentials.yml b/workflow-parser/testdata/reader/job-container-invalid-credentials.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-container-invalid-credentials.yml rename to workflow-parser/testdata/reader/job-container-invalid-credentials.yml diff --git a/actions-workflow-parser/testdata/reader/job-container-invalid.yml b/workflow-parser/testdata/reader/job-container-invalid.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-container-invalid.yml rename to workflow-parser/testdata/reader/job-container-invalid.yml diff --git a/actions-workflow-parser/testdata/reader/job-container-missing-image.yml b/workflow-parser/testdata/reader/job-container-missing-image.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-container-missing-image.yml rename to workflow-parser/testdata/reader/job-container-missing-image.yml diff --git a/actions-workflow-parser/testdata/reader/job-container.yml b/workflow-parser/testdata/reader/job-container.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-container.yml rename to workflow-parser/testdata/reader/job-container.yml diff --git a/actions-workflow-parser/testdata/reader/job-continue-on-error.yml b/workflow-parser/testdata/reader/job-continue-on-error.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-continue-on-error.yml rename to workflow-parser/testdata/reader/job-continue-on-error.yml diff --git a/actions-workflow-parser/testdata/reader/job-defaults.yml b/workflow-parser/testdata/reader/job-defaults.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-defaults.yml rename to workflow-parser/testdata/reader/job-defaults.yml diff --git a/actions-workflow-parser/testdata/reader/job-environment.yml b/workflow-parser/testdata/reader/job-environment.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-environment.yml rename to workflow-parser/testdata/reader/job-environment.yml diff --git a/actions-workflow-parser/testdata/reader/job-id.yml b/workflow-parser/testdata/reader/job-id.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-id.yml rename to workflow-parser/testdata/reader/job-id.yml diff --git a/actions-workflow-parser/testdata/reader/job-if.yml b/workflow-parser/testdata/reader/job-if.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-if.yml rename to workflow-parser/testdata/reader/job-if.yml diff --git a/actions-workflow-parser/testdata/reader/job-needs.yml b/workflow-parser/testdata/reader/job-needs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-needs.yml rename to workflow-parser/testdata/reader/job-needs.yml diff --git a/actions-workflow-parser/testdata/reader/job-outputs.yml b/workflow-parser/testdata/reader/job-outputs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-outputs.yml rename to workflow-parser/testdata/reader/job-outputs.yml diff --git a/actions-workflow-parser/testdata/reader/job-permissions.yml b/workflow-parser/testdata/reader/job-permissions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-permissions.yml rename to workflow-parser/testdata/reader/job-permissions.yml diff --git a/actions-workflow-parser/testdata/reader/job-runs-on.yml b/workflow-parser/testdata/reader/job-runs-on.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-runs-on.yml rename to workflow-parser/testdata/reader/job-runs-on.yml diff --git a/actions-workflow-parser/testdata/reader/job-services-args.yml b/workflow-parser/testdata/reader/job-services-args.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-services-args.yml rename to workflow-parser/testdata/reader/job-services-args.yml diff --git a/actions-workflow-parser/testdata/reader/job-services.yml b/workflow-parser/testdata/reader/job-services.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-services.yml rename to workflow-parser/testdata/reader/job-services.yml diff --git a/actions-workflow-parser/testdata/reader/job-strategy.yml b/workflow-parser/testdata/reader/job-strategy.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-strategy.yml rename to workflow-parser/testdata/reader/job-strategy.yml diff --git a/actions-workflow-parser/testdata/reader/job-timeout-minutes.yml b/workflow-parser/testdata/reader/job-timeout-minutes.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-timeout-minutes.yml rename to workflow-parser/testdata/reader/job-timeout-minutes.yml diff --git a/actions-workflow-parser/testdata/reader/job-with-outputs-context.yml b/workflow-parser/testdata/reader/job-with-outputs-context.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/job-with-outputs-context.yml rename to workflow-parser/testdata/reader/job-with-outputs-context.yml diff --git a/actions-workflow-parser/testdata/reader/matrix-basic.yml b/workflow-parser/testdata/reader/matrix-basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/matrix-basic.yml rename to workflow-parser/testdata/reader/matrix-basic.yml diff --git a/actions-workflow-parser/testdata/reader/max-result-size.yml b/workflow-parser/testdata/reader/max-result-size.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/max-result-size.yml rename to workflow-parser/testdata/reader/max-result-size.yml diff --git a/actions-workflow-parser/testdata/reader/misc-jobs.yml b/workflow-parser/testdata/reader/misc-jobs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/misc-jobs.yml rename to workflow-parser/testdata/reader/misc-jobs.yml diff --git a/actions-workflow-parser/testdata/reader/misc-steps.yml b/workflow-parser/testdata/reader/misc-steps.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/misc-steps.yml rename to workflow-parser/testdata/reader/misc-steps.yml diff --git a/actions-workflow-parser/testdata/reader/mvp.yml b/workflow-parser/testdata/reader/mvp.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/mvp.yml rename to workflow-parser/testdata/reader/mvp.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_call-mapping.yml b/workflow-parser/testdata/reader/on-workflow_call-mapping.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_call-mapping.yml rename to workflow-parser/testdata/reader/on-workflow_call-mapping.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_call-sequence.yml b/workflow-parser/testdata/reader/on-workflow_call-sequence.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_call-sequence.yml rename to workflow-parser/testdata/reader/on-workflow_call-sequence.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_call.yml b/workflow-parser/testdata/reader/on-workflow_call.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_call.yml rename to workflow-parser/testdata/reader/on-workflow_call.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-mapping.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-mapping.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-mapping.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-mapping.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-null.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-null.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-null.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-null.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-string.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-string.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-string.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-string.yml diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml b/workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml rename to workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml diff --git a/actions-workflow-parser/testdata/reader/permissions.yml b/workflow-parser/testdata/reader/permissions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/permissions.yml rename to workflow-parser/testdata/reader/permissions.yml diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml b/workflow-parser/testdata/reader/preserves-source-info-basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml rename to workflow-parser/testdata/reader/preserves-source-info-basic.yml diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml b/workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml rename to workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml b/workflow-parser/testdata/reader/preserves-source-info-simple.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml rename to workflow-parser/testdata/reader/preserves-source-info-simple.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml b/workflow-parser/testdata/reader/reusable-workflow-inputs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml rename to workflow-parser/testdata/reader/reusable-workflow-inputs.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml b/workflow-parser/testdata/reader/reusable-workflow-job-basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-basic.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml b/workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-mvp.yml b/workflow-parser/testdata/reader/reusable-workflow-job-mvp.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-mvp.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-mvp.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml b/workflow-parser/testdata/reader/reusable-workflow-job-name.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-name.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml b/workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml b/workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml b/workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-default-limited-read-allows-contents-packages.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-default-limited-read-allows-contents-packages.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-default-limited-read-allows-contents-packages.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-default-limited-read-allows-contents-packages.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-write.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-write.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-write.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-write.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml b/workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml b/workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml rename to workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml b/workflow-parser/testdata/reader/reusable-workflow-multiple.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml rename to workflow-parser/testdata/reader/reusable-workflow-multiple.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml b/workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml rename to workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml b/workflow-parser/testdata/reader/reusable-workflow-outputs.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml rename to workflow-parser/testdata/reader/reusable-workflow-outputs.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml b/workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml rename to workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml b/workflow-parser/testdata/reader/reusable-workflow-secrets.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml rename to workflow-parser/testdata/reader/reusable-workflow-secrets.yml diff --git a/actions-workflow-parser/testdata/reader/root-env-defaults.yml b/workflow-parser/testdata/reader/root-env-defaults.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/root-env-defaults.yml rename to workflow-parser/testdata/reader/root-env-defaults.yml diff --git a/actions-workflow-parser/testdata/reader/round-to-infinity.yml b/workflow-parser/testdata/reader/round-to-infinity.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/round-to-infinity.yml rename to workflow-parser/testdata/reader/round-to-infinity.yml diff --git a/actions-workflow-parser/testdata/reader/scientific-notation-number.yml b/workflow-parser/testdata/reader/scientific-notation-number.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/scientific-notation-number.yml rename to workflow-parser/testdata/reader/scientific-notation-number.yml diff --git a/actions-workflow-parser/testdata/reader/skip-reusable-workflows.yml b/workflow-parser/testdata/reader/skip-reusable-workflows.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/skip-reusable-workflows.yml rename to workflow-parser/testdata/reader/skip-reusable-workflows.yml diff --git a/actions-workflow-parser/testdata/reader/step-continue-on-error.yml b/workflow-parser/testdata/reader/step-continue-on-error.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-continue-on-error.yml rename to workflow-parser/testdata/reader/step-continue-on-error.yml diff --git a/actions-workflow-parser/testdata/reader/step-id-generates-counter-per-collision.yml b/workflow-parser/testdata/reader/step-id-generates-counter-per-collision.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-id-generates-counter-per-collision.yml rename to workflow-parser/testdata/reader/step-id-generates-counter-per-collision.yml diff --git a/actions-workflow-parser/testdata/reader/step-id-generates-when-empty-and-considers-collisions.yml b/workflow-parser/testdata/reader/step-id-generates-when-empty-and-considers-collisions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-id-generates-when-empty-and-considers-collisions.yml rename to workflow-parser/testdata/reader/step-id-generates-when-empty-and-considers-collisions.yml diff --git a/actions-workflow-parser/testdata/reader/step-id-generates-when-empty.yml b/workflow-parser/testdata/reader/step-id-generates-when-empty.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-id-generates-when-empty.yml rename to workflow-parser/testdata/reader/step-id-generates-when-empty.yml diff --git a/actions-workflow-parser/testdata/reader/step-id.yml b/workflow-parser/testdata/reader/step-id.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-id.yml rename to workflow-parser/testdata/reader/step-id.yml diff --git a/actions-workflow-parser/testdata/reader/step-if.yml b/workflow-parser/testdata/reader/step-if.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-if.yml rename to workflow-parser/testdata/reader/step-if.yml diff --git a/actions-workflow-parser/testdata/reader/step-name.yml b/workflow-parser/testdata/reader/step-name.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-name.yml rename to workflow-parser/testdata/reader/step-name.yml diff --git a/actions-workflow-parser/testdata/reader/step-run.yml b/workflow-parser/testdata/reader/step-run.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/step-run.yml rename to workflow-parser/testdata/reader/step-run.yml diff --git a/actions-workflow-parser/testdata/reader/workflow-concurrency-expression.yml b/workflow-parser/testdata/reader/workflow-concurrency-expression.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/workflow-concurrency-expression.yml rename to workflow-parser/testdata/reader/workflow-concurrency-expression.yml diff --git a/actions-workflow-parser/testdata/reader/workflow-concurrency-mapping.yml b/workflow-parser/testdata/reader/workflow-concurrency-mapping.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/workflow-concurrency-mapping.yml rename to workflow-parser/testdata/reader/workflow-concurrency-mapping.yml diff --git a/actions-workflow-parser/testdata/reader/workflow-defaults.yml b/workflow-parser/testdata/reader/workflow-defaults.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/workflow-defaults.yml rename to workflow-parser/testdata/reader/workflow-defaults.yml diff --git a/actions-workflow-parser/testdata/reader/workflow-env.yml b/workflow-parser/testdata/reader/workflow-env.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/workflow-env.yml rename to workflow-parser/testdata/reader/workflow-env.yml diff --git a/actions-workflow-parser/testdata/reader/workflow-name.yml b/workflow-parser/testdata/reader/workflow-name.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/workflow-name.yml rename to workflow-parser/testdata/reader/workflow-name.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-bool.yml b/workflow-parser/testdata/reader/yaml-schema-bool.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-bool.yml rename to workflow-parser/testdata/reader/yaml-schema-bool.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-exceptions.yml b/workflow-parser/testdata/reader/yaml-schema-exceptions.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-exceptions.yml rename to workflow-parser/testdata/reader/yaml-schema-exceptions.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-float.yml b/workflow-parser/testdata/reader/yaml-schema-float.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-float.yml rename to workflow-parser/testdata/reader/yaml-schema-float.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-int.yml b/workflow-parser/testdata/reader/yaml-schema-int.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-int.yml rename to workflow-parser/testdata/reader/yaml-schema-int.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-null.yml b/workflow-parser/testdata/reader/yaml-schema-null.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-null.yml rename to workflow-parser/testdata/reader/yaml-schema-null.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml b/workflow-parser/testdata/reader/yaml-schema-sequence.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml rename to workflow-parser/testdata/reader/yaml-schema-sequence.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-str-block-styles.yml b/workflow-parser/testdata/reader/yaml-schema-str-block-styles.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-str-block-styles.yml rename to workflow-parser/testdata/reader/yaml-schema-str-block-styles.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml b/workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml rename to workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-string.yml b/workflow-parser/testdata/reader/yaml-schema-string.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-string.yml rename to workflow-parser/testdata/reader/yaml-schema-string.yml diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml b/workflow-parser/testdata/reader/yaml-schema-timestamp.yml similarity index 100% rename from actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml rename to workflow-parser/testdata/reader/yaml-schema-timestamp.yml diff --git a/actions-workflow-parser/testdata/skipped-tests.txt b/workflow-parser/testdata/skipped-tests.txt similarity index 100% rename from actions-workflow-parser/testdata/skipped-tests.txt rename to workflow-parser/testdata/skipped-tests.txt diff --git a/actions-workflow-parser/testdata/sync-tests.sh b/workflow-parser/testdata/sync-tests.sh similarity index 100% rename from actions-workflow-parser/testdata/sync-tests.sh rename to workflow-parser/testdata/sync-tests.sh diff --git a/actions-workflow-parser/tsconfig.build.json b/workflow-parser/tsconfig.build.json similarity index 100% rename from actions-workflow-parser/tsconfig.build.json rename to workflow-parser/tsconfig.build.json diff --git a/actions-workflow-parser/tsconfig.json b/workflow-parser/tsconfig.json similarity index 100% rename from actions-workflow-parser/tsconfig.json rename to workflow-parser/tsconfig.json