From 87399813a5eb5ec3a73d11719066dceff2620582 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sun, 29 Mar 2020 15:20:03 +0900 Subject: [PATCH] docs: Improve Elm example (#190) --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d7a1050..0f9dcd3 100644 --- a/README.md +++ b/README.md @@ -839,10 +839,9 @@ jobs: ### ⭐️ Elm -An exapmle workflow for [Elm] with [justgook/setup-elm]. +An exapmle workflow for [Elm]. [Elm]: https://elm-lang.org -[justgook/setup-elm]: https://github.com/justgook/setup-elm ```yaml name: github pages @@ -858,8 +857,13 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v1 + with: + node-version: '12.x' + - name: Setup Elm - uses: justgook/setup-elm@v1 + run: npm install elm --global - name: Make run: elm make --optimize src/Main.elm