Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.elm
key: elm-${{ hashFiles('elm.json', 'review/elm.json') }}
key: elm-${{ hashFiles('elm.json', 'review/elm.json', 'example/counter/elm.json') }}

# 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: Setup lamdera dependencies
run: (cd example/counter && npx lamdera make src/*.elm)
- name: npm ci
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
Expand Down
89 changes: 89 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"test": "cd example/counter && elm-test --compiler `which lamdera`"
},
"devDependencies": {
"elm-format": "^0.8.8",
"elm-test": "^0.19.1-revision16",
"lamdera": "^0.19.1-1.3.2"
}
Expand Down