[Elm] Fix not compiling all elm files in test suite (#20191)

* Fix not trying to compile all elm files

* Validate that changes to pipeline works
This commit is contained in:
Qluxzz 2024-11-27 08:44:21 +01:00 committed by GitHub
parent 7b35613cfc
commit 705261978d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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:
@ -32,4 +34,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