We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f1f69 commit e4b6c0eCopy full SHA for e4b6c0e
.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/[email protected]
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