We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc7303 commit 34aacf7Copy full SHA for 34aacf7
.github/workflows/ci.yml
@@ -16,10 +16,14 @@ jobs:
16
with:
17
node-version: "${{ matrix.node-version }}"
18
19
- - name: Install elm, elm-format and cache the ELM_HOME directory
+ - name: Install elm, elm-test-rs
20
uses: mpizenberg/elm-tooling-action@v1.1
21
22
- cache-key: elm-home-${{ hashFiles('elm-tooling.json', 'elm.json') }}
+ # The global elm home is _only_ used by elm-tooling to store
23
+ # installed binaries. For testing we set up our own local elm_home
24
+ # (and clear it before each run) so we are free to cache elm home
25
+ # regardless of the packages we use for testing.
26
+ cache-key: elm-home-${{ hashFiles('elm-tooling.json') }}
27
28
- name: Run tests
29
run: ./tests/run-tests.sh
0 commit comments