Skip to content

Commit

Permalink
Update elm-tooling to version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mpizenberg committed Feb 28, 2021
1 parent f333897 commit 2f3b1cd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
- run: elm --version
- run: elm-format --help
- run: elm-json --version
- run: elm-test-rs --version
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> https://elm-tooling.github.io/elm-tooling-cli/ci/
This action lets you install tools supported by elm-tooling,
such as elm, elm-format and elm-json in your GitHub CI,
such as elm, elm-format, elm-json and elm-test-rs in your GitHub CI,
without the need of npm and `package.json`.

It will also cache your home Elm directory,
Expand All @@ -14,7 +14,7 @@ for more efficient builds! You can use this action as follows.

```yaml
- name: Install elm, elm-format and cache the ELM_HOME directory
uses: mpizenberg/elm-tooling-action@v1.0
uses: mpizenberg/elm-tooling-action@v1.1
with:
cache-key: elm-home-${{ hashFiles('elm-tooling.json', 'elm.json') }}

Expand Down Expand Up @@ -45,7 +45,7 @@ There are two additional keys providing more flexibility for some use cases.
2. `elm-tooling-dir`: The directory containing the `elm-tooling.json` file. If not provided, it defaults to the project root.

```yaml
- uses: mpizenberg/elm-tooling-action@1.0
- uses: mpizenberg/elm-tooling-action@v1.1
with:
cache-key: elm-home-${{ hashFiles('elm-tooling.json', 'elm.json') }}
cache-restore-key: elm-home
Expand Down
2 changes: 1 addition & 1 deletion dist/main.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion elm-tooling.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"tools": {
"elm": "0.19.1",
"elm-format": "0.8.5",
"elm-json": "0.2.10"
"elm-json": "0.2.10",
"elm-test-rs": "1.0.0"
}
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"@actions/cache": "^1.0.6",
"@actions/core": "^1.2.6",
"elm-tooling": "^1.2.0"
"elm-tooling": "^1.3.0"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0"
Expand Down

0 comments on commit 2f3b1cd

Please sign in to comment.