-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4f1f69
commit e4b6c0e
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,14 @@ jobs: | |
with: | ||
node-version: "${{ matrix.node-version }}" | ||
|
||
- name: Install elm, elm-format and cache the ELM_HOME directory | ||
- name: Install elm, elm-test-rs | ||
uses: mpizenberg/[email protected] | ||
with: | ||
cache-key: elm-home-${{ hashFiles('elm-tooling.json', 'elm.json') }} | ||
# The global elm home is _only_ used by elm-tooling to store | ||
# installed binaries. For testing we set up our own local elm_home | ||
# (and clear it before each run) so we are free to cache elm home | ||
# regardless of the packages we use for testing. | ||
cache-key: elm-home-${{ hashFiles('elm-tooling.json') }} | ||
|
||
- name: Run tests | ||
run: ./tests/run-tests.sh |