Skip to content

Commit

Permalink
Try npm install in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonkearns committed Apr 29, 2024
1 parent 55a8681 commit cfc7efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# Install npm packages, unless we restored them from cache.
# Since `npm ci` removes the node_modules folder before running it’s
# important to skip this step if cache was restored.
- name: npm ci
- name: npm install
if: steps.cache-node_modules.outputs.cache-hit != 'true'
env:
# If you have a `"postinstall": "elm-tooling install"` script in your
Expand All @@ -55,7 +55,7 @@ jobs:
# package-lock.json does not, the postinstall script needs running
# but this step won’t.
NO_ELM_TOOLING_INSTALL: 1
run: npm ci
run: npm install
- name: elm-tooling install
run: npx --no-install elm-tooling install
- name: Add elm-review, elm and elm-format to path
Expand Down

0 comments on commit cfc7efc

Please sign in to comment.