Skip to content

Commit

Permalink
npm install global
Browse files Browse the repository at this point in the history
  • Loading branch information
shnewto committed Nov 11, 2023
1 parent d231bcb commit 86c973e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,51 +6,51 @@ on:
push:

jobs:
macos-latest-stable:
macos-latest:
runs-on: macos-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: install elm
run: |
npm install elm
npm install -g elm
- name: build
run: |
./node_modules/elm/bin/elm make
elm make
- name: build docs
run: |
./node_modules/elm/bin/elm make --docs=docs.json
elm make --docs=docs.json
- name: install elm-format
run: |
npm install elm-format
npm install -g elm-format
- name: format
run: |
./node_modules/elm-format/bin/elm-format src --validate
elm-format src --validate
- name: install elm-test
run: |
npm install elm-test
npm install -g elm-test
- name: test
run: |
./node_modules/elm-test/bin/elm-test
elm-test
windows-latest-stable:
windows-latest:
runs-on: windows-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: install elm
run: |
npm install elm
npm install -g elm
- name: build
run: |
./node_modules/elm/bin/elm make
elm make
- name: install elm-test
run: |
npm install elm-test
npm install -g elm-test
- name: test
run: |
./node_modules/elm-test/bin/elm-test
elm-test
ubuntu-latest:
runs-on: ubuntu-latest
Expand All @@ -59,13 +59,13 @@ jobs:
uses: actions/checkout@v2
- name: install elm
run: |
npm install elm
npm install -g elm
- name: build
run: |
./node_modules/elm/bin/elm make
elm make
- name: install elm-test
run: |
npm install elm-test
npm install -g elm-test
- name: test
run: |
./node_modules/elm-test/bin/elm-test
elm-test

0 comments on commit 86c973e

Please sign in to comment.