From f19d2bd0a9ff095f38002faea2616bfc3df0bb95 Mon Sep 17 00:00:00 2001 From: Jacob Wallraff Date: Wed, 1 Feb 2023 17:33:44 -0800 Subject: [PATCH] Skip new tests and fix capitalization --- actions-workflow-parser/testdata/reader/errors-insert.yml | 2 -- .../testdata/reader/errors-invalid-mapping-key.yml | 2 ++ .../testdata/reader/errors-matrix-empty-vector.yml | 2 ++ actions-workflow-parser/testdata/reader/errors-step-id.yml | 2 ++ actions-workflow-parser/testdata/reader/errors-step-if.yml | 2 -- .../testdata/reader/errors-step-run-exceeds-length.yml | 2 +- .../testdata/reader/errors-step-uses-syntax.yml | 2 +- .../testdata/reader/errors-unexpected-mapping.yml | 2 +- actions-workflow-parser/testdata/reader/escape-html-values.yml | 2 +- actions-workflow-parser/testdata/reader/float-folded-style.yml | 2 ++ actions-workflow-parser/testdata/reader/job-basic.yml | 2 +- .../testdata/reader/job-cancel-timeout-minutes.yml | 1 + actions-workflow-parser/testdata/reader/job-concurrency.yml | 2 +- .../testdata/reader/job-continue-on-error.yml | 2 +- actions-workflow-parser/testdata/reader/job-defaults.yml | 2 +- actions-workflow-parser/testdata/reader/job-if.yml | 2 +- actions-workflow-parser/testdata/reader/job-permissions.yml | 2 +- actions-workflow-parser/testdata/reader/job-timeout-minutes.yml | 2 +- actions-workflow-parser/testdata/reader/matrix-basic.yml | 2 ++ actions-workflow-parser/testdata/reader/misc-jobs.yml | 2 +- actions-workflow-parser/testdata/reader/misc-steps.yml | 2 +- actions-workflow-parser/testdata/reader/mvp.yml | 2 +- .../testdata/reader/on-workflow_dispatch-inputs-null.yml | 2 +- .../testdata/reader/on-workflow_dispatch-inputs.yml | 2 +- .../reader/on-workflow_dispatch-unknown-keys-ignored.yml | 2 +- actions-workflow-parser/testdata/reader/permissions.yml | 2 +- .../testdata/reader/preserves-source-info-basic.yml | 2 +- .../testdata/reader/preserves-source-info-reusable-workflow.yml | 2 +- .../testdata/reader/preserves-source-info-simple.yml | 2 +- .../testdata/reader/reusable-workflow-inputs.yml | 2 +- .../testdata/reader/reusable-workflow-job-basic.yml | 2 +- .../reader/reusable-workflow-job-inputs-type-coercion.yml | 2 +- .../testdata/reader/reusable-workflow-job-name.yml | 2 +- .../testdata/reader/reusable-workflow-job-nested-basic.yml | 2 +- .../testdata/reader/reusable-workflow-job-nested-multiple.yml | 2 +- .../reader/reusable-workflow-job-nested-permissions.yml | 2 +- ...workflow-job-permissions-embedded-permissions-after-jobs.yml | 2 +- .../reusable-workflow-job-permissions-embedded-permissions.yml | 2 +- ...-workflow-job-permissions-overrides-default-limited-read.yml | 2 +- ...workflow-job-permissions-overrides-default-limited-write.yml | 2 +- ...usable-workflow-job-permissions-overrides-workflow-level.yml | 2 +- .../testdata/reader/reusable-workflow-job-strategy.yml | 2 +- .../testdata/reader/reusable-workflow-multiple.yml | 2 +- .../testdata/reader/reusable-workflow-no-inputs.yml | 2 +- .../testdata/reader/reusable-workflow-outputs.yml | 2 +- .../reusable-workflow-secrets-secret-without-definition.yml | 2 +- .../testdata/reader/reusable-workflow-secrets.yml | 2 +- actions-workflow-parser/testdata/reader/root-env-defaults.yml | 2 +- actions-workflow-parser/testdata/reader/step-if.yml | 2 +- actions-workflow-parser/testdata/reader/workflow-defaults.yml | 2 +- actions-workflow-parser/testdata/reader/yaml-schema-float.yml | 2 +- actions-workflow-parser/testdata/reader/yaml-schema-null.yml | 2 +- .../testdata/reader/yaml-schema-sequence.yml | 2 +- .../testdata/reader/yaml-schema-str-flow-styles.yml | 2 +- actions-workflow-parser/testdata/reader/yaml-schema-string.yml | 2 +- .../testdata/reader/yaml-schema-timestamp.yml | 2 +- 56 files changed, 59 insertions(+), 52 deletions(-) diff --git a/actions-workflow-parser/testdata/reader/errors-insert.yml b/actions-workflow-parser/testdata/reader/errors-insert.yml index 8e91acf..6506202 100644 --- a/actions-workflow-parser/testdata/reader/errors-insert.yml +++ b/actions-workflow-parser/testdata/reader/errors-insert.yml @@ -1,6 +1,4 @@ include-source: false # Drop file/line/col from output -skip: - - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml b/actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml index 81ecbe6..1611363 100644 --- a/actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml +++ b/actions-workflow-parser/testdata/reader/errors-invalid-mapping-key.yml @@ -1,4 +1,6 @@ include-source: false # Drop file/line/col from output +skip: + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml b/actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml index 1cce7ef..6c4a744 100644 --- a/actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml +++ b/actions-workflow-parser/testdata/reader/errors-matrix-empty-vector.yml @@ -1,4 +1,6 @@ include-source: false # Drop file/line/col from output +skip: + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/errors-step-id.yml b/actions-workflow-parser/testdata/reader/errors-step-id.yml index f36cfd3..d980321 100644 --- a/actions-workflow-parser/testdata/reader/errors-step-id.yml +++ b/actions-workflow-parser/testdata/reader/errors-step-id.yml @@ -1,4 +1,6 @@ include-source: false # Drop file/line/col from output +skip: + - TypeScript --- name: CI on: diff --git a/actions-workflow-parser/testdata/reader/errors-step-if.yml b/actions-workflow-parser/testdata/reader/errors-step-if.yml index 5903c0f..a46c1e8 100644 --- a/actions-workflow-parser/testdata/reader/errors-step-if.yml +++ b/actions-workflow-parser/testdata/reader/errors-step-if.yml @@ -1,6 +1,4 @@ include-source: false # Drop file/line/col from output -skip: - - Typescript --- on: push: diff --git a/actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml b/actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml index 936ac60..8933371 100644 --- a/actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml +++ b/actions-workflow-parser/testdata/reader/errors-step-run-exceeds-length.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml b/actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml index e9fdc06..3b244e2 100644 --- a/actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml +++ b/actions-workflow-parser/testdata/reader/errors-step-uses-syntax.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml b/actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml index 61b0ba8..5482655 100644 --- a/actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml +++ b/actions-workflow-parser/testdata/reader/errors-unexpected-mapping.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/escape-html-values.yml b/actions-workflow-parser/testdata/reader/escape-html-values.yml index f7aa984..2fb679a 100644 --- a/actions-workflow-parser/testdata/reader/escape-html-values.yml +++ b/actions-workflow-parser/testdata/reader/escape-html-values.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push env: diff --git a/actions-workflow-parser/testdata/reader/float-folded-style.yml b/actions-workflow-parser/testdata/reader/float-folded-style.yml index f3fdb4d..bd28b60 100644 --- a/actions-workflow-parser/testdata/reader/float-folded-style.yml +++ b/actions-workflow-parser/testdata/reader/float-folded-style.yml @@ -1,4 +1,6 @@ include-source: false # Drop file/line/col from output +skip: + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-basic.yml b/actions-workflow-parser/testdata/reader/job-basic.yml index c1d60c3..824c814 100644 --- a/actions-workflow-parser/testdata/reader/job-basic.yml +++ b/actions-workflow-parser/testdata/reader/job-basic.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml b/actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml index 462eb7a..632dc91 100644 --- a/actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml +++ b/actions-workflow-parser/testdata/reader/job-cancel-timeout-minutes.yml @@ -1,6 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-concurrency.yml b/actions-workflow-parser/testdata/reader/job-concurrency.yml index 6e59942..4a9d711 100644 --- a/actions-workflow-parser/testdata/reader/job-concurrency.yml +++ b/actions-workflow-parser/testdata/reader/job-concurrency.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-continue-on-error.yml b/actions-workflow-parser/testdata/reader/job-continue-on-error.yml index d80dc60..6a09af9 100644 --- a/actions-workflow-parser/testdata/reader/job-continue-on-error.yml +++ b/actions-workflow-parser/testdata/reader/job-continue-on-error.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-defaults.yml b/actions-workflow-parser/testdata/reader/job-defaults.yml index e08958b..25e99dd 100644 --- a/actions-workflow-parser/testdata/reader/job-defaults.yml +++ b/actions-workflow-parser/testdata/reader/job-defaults.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/job-if.yml b/actions-workflow-parser/testdata/reader/job-if.yml index e519613..ef715cf 100644 --- a/actions-workflow-parser/testdata/reader/job-if.yml +++ b/actions-workflow-parser/testdata/reader/job-if.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push env: diff --git a/actions-workflow-parser/testdata/reader/job-permissions.yml b/actions-workflow-parser/testdata/reader/job-permissions.yml index 2fe6edd..df3095c 100644 --- a/actions-workflow-parser/testdata/reader/job-permissions.yml +++ b/actions-workflow-parser/testdata/reader/job-permissions.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push permissions: diff --git a/actions-workflow-parser/testdata/reader/job-timeout-minutes.yml b/actions-workflow-parser/testdata/reader/job-timeout-minutes.yml index cce97df..f6c7b76 100644 --- a/actions-workflow-parser/testdata/reader/job-timeout-minutes.yml +++ b/actions-workflow-parser/testdata/reader/job-timeout-minutes.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/matrix-basic.yml b/actions-workflow-parser/testdata/reader/matrix-basic.yml index f8738d1..d6f1e91 100644 --- a/actions-workflow-parser/testdata/reader/matrix-basic.yml +++ b/actions-workflow-parser/testdata/reader/matrix-basic.yml @@ -1,4 +1,6 @@ include-source: false # Drop file/line/col from output +skip: + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/misc-jobs.yml b/actions-workflow-parser/testdata/reader/misc-jobs.yml index f0f7d26..417c527 100644 --- a/actions-workflow-parser/testdata/reader/misc-jobs.yml +++ b/actions-workflow-parser/testdata/reader/misc-jobs.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/misc-steps.yml b/actions-workflow-parser/testdata/reader/misc-steps.yml index ddcbc39..b75efd8 100644 --- a/actions-workflow-parser/testdata/reader/misc-steps.yml +++ b/actions-workflow-parser/testdata/reader/misc-steps.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/mvp.yml b/actions-workflow-parser/testdata/reader/mvp.yml index f163b15..417ef36 100644 --- a/actions-workflow-parser/testdata/reader/mvp.yml +++ b/actions-workflow-parser/testdata/reader/mvp.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- # This is a basic workflow to help you get started with Actions diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml index c1a963d..f65c6b2 100644 --- a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml +++ b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs-null.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: workflow_dispatch: diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml index ad85c31..b97e1f1 100644 --- a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml +++ b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-inputs.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: workflow_dispatch: diff --git a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml index 2b53084..ee2019a 100644 --- a/actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml +++ b/actions-workflow-parser/testdata/reader/on-workflow_dispatch-unknown-keys-ignored.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: workflow_dispatch: diff --git a/actions-workflow-parser/testdata/reader/permissions.yml b/actions-workflow-parser/testdata/reader/permissions.yml index 0d8c690..df6f689 100644 --- a/actions-workflow-parser/testdata/reader/permissions.yml +++ b/actions-workflow-parser/testdata/reader/permissions.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push permissions: diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml b/actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml index b1aff7f..9c16081 100644 --- a/actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml +++ b/actions-workflow-parser/testdata/reader/preserves-source-info-basic.yml @@ -1,6 +1,6 @@ include-source: true # Preserve file/line/col in serialized output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml b/actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml index cc38740..acf4c70 100644 --- a/actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml +++ b/actions-workflow-parser/testdata/reader/preserves-source-info-reusable-workflow.yml @@ -1,7 +1,7 @@ include-source: true # Preserve file/line/col in serialized output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml b/actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml index 12b23fa..75303ce 100644 --- a/actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml +++ b/actions-workflow-parser/testdata/reader/preserves-source-info-simple.yml @@ -1,6 +1,6 @@ include-source: true # Preserve file/line/col in serialized output skip: - - Typescript + - TypeScript --- # This is meant to cover all the different types of TemplateToken that are output # with include-source: true. Currently it is missing type 4 (insert expression) diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml index cabbb11..cd82fa4 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-inputs.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml index 0cc5364..9d9c070 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-basic.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml index 655c0be..dbe138c 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-inputs-type-coercion.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml index 29839b9..60c8c3c 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-name.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml index f38992d..ec93258 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-basic.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript max-nested-reusable-workflows-depth: 2 --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml index 79f2673..de28ff1 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-multiple.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript max-nested-reusable-workflows-depth: 2 --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml index e0c797b..773dd93 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-nested-permissions.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript max-nested-reusable-workflows-depth: 3 --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml index 94de16a..e613903 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions-after-jobs.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript permissions-policy: LimitedRead --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml index 965c083..47ce8d1 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-embedded-permissions.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript permissions-policy: LimitedRead --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml index 4d040b0..d6fb3b6 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-read.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript permissions-policy: LimitedRead --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml index 3125d12..e9fa67a 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-default-limited-write.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript permissions-policy: Write --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml index 0ed4153..7f096d0 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-permissions-overrides-workflow-level.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript permissions-policy: LimitedRead --- on: push diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml index 17907e2..cd35281 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-job-strategy.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml index 050ab38..959dfc1 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-multiple.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml index 0381c25..df0edad 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-no-inputs.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml index a48e668..c567cac 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-outputs.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml index 68667b4..2c8e078 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-secrets-secret-without-definition.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml b/actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml index eab6968..7514011 100644 --- a/actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml +++ b/actions-workflow-parser/testdata/reader/reusable-workflow-secrets.yml @@ -1,7 +1,7 @@ include-source: false # Drop file/line/col from output skip: - Go - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/root-env-defaults.yml b/actions-workflow-parser/testdata/reader/root-env-defaults.yml index 6109c9e..5b19c66 100644 --- a/actions-workflow-parser/testdata/reader/root-env-defaults.yml +++ b/actions-workflow-parser/testdata/reader/root-env-defaults.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push env: diff --git a/actions-workflow-parser/testdata/reader/step-if.yml b/actions-workflow-parser/testdata/reader/step-if.yml index de0baa7..ffbaf89 100644 --- a/actions-workflow-parser/testdata/reader/step-if.yml +++ b/actions-workflow-parser/testdata/reader/step-if.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/workflow-defaults.yml b/actions-workflow-parser/testdata/reader/workflow-defaults.yml index 014ec6b..51fb7f8 100644 --- a/actions-workflow-parser/testdata/reader/workflow-defaults.yml +++ b/actions-workflow-parser/testdata/reader/workflow-defaults.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push defaults: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-float.yml b/actions-workflow-parser/testdata/reader/yaml-schema-float.yml index 96c5144..fb7f36f 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-float.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-float.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-null.yml b/actions-workflow-parser/testdata/reader/yaml-schema-null.yml index a345d26..6349637 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-null.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-null.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml b/actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml index 4475e31..8d458f7 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-sequence.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml b/actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml index 128ac01..9f2a87c 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-str-flow-styles.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-string.yml b/actions-workflow-parser/testdata/reader/yaml-schema-string.yml index e2122ac..cc9ca28 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-string.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-string.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: diff --git a/actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml b/actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml index 3de4316..c722fb9 100644 --- a/actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml +++ b/actions-workflow-parser/testdata/reader/yaml-schema-timestamp.yml @@ -1,6 +1,6 @@ include-source: false # Drop file/line/col from output skip: - - Typescript + - TypeScript --- on: push jobs: