From 0597eaf682a925b7dd5c4b6fd8777b0fffec48ce Mon Sep 17 00:00:00 2001 From: Qluxzz Date: Tue, 26 Nov 2024 21:12:28 +0100 Subject: [PATCH 1/2] Fix not trying to compile all elm files --- .github/workflows/samples-elm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/samples-elm.yaml b/.github/workflows/samples-elm.yaml index a9dad78925a6..926be530d836 100644 --- a/.github/workflows/samples-elm.yaml +++ b/.github/workflows/samples-elm.yaml @@ -32,4 +32,4 @@ jobs: # An .elm file couldn't be compiled # No .elm files were found # No elm.json file could be found in the root of the working directory - run: elm make $(find . -name *.elm) --output=/dev/null + run: elm make $(find . -name "*.elm") --output=/dev/null From e6f17bd6d7434825eb43a6f7b71a4b1cf855717a Mon Sep 17 00:00:00 2001 From: Qluxzz Date: Tue, 26 Nov 2024 21:42:02 +0100 Subject: [PATCH 2/2] Validate that changes to pipeline works --- .github/workflows/samples-elm.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/samples-elm.yaml b/.github/workflows/samples-elm.yaml index 926be530d836..b494ffaf4b09 100644 --- a/.github/workflows/samples-elm.yaml +++ b/.github/workflows/samples-elm.yaml @@ -3,10 +3,12 @@ name: Samples Elm on: push: paths: + - .github/workflows/samples-elm.yaml - samples/client/petstore/elm/** - samples/openapi3/client/elm/** pull_request: paths: + - .github/workflows/samples-elm.yaml - samples/client/petstore/elm/** - samples/openapi3/client/elm/** jobs: