Skip to content

Commit

Permalink
Try workaround for NPM bug by removing node_modules in CI script.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonkearns committed Apr 29, 2024
1 parent 86b67d9 commit d585e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set -ex;
yes | lamdera reset || true
npm run build:generator
npx elm-test-rs --compiler lamdera
(cd examples/routing && yes | lamdera reset || true && npm ci && npm run build && npx elm-test-rs --compiler lamdera)
(cd examples/routing && yes | lamdera reset || true && rm -rf node_modules package-lock.json && npm install && npm run build && npx elm-test-rs --compiler lamdera)
(cd generator/dead-code-review && npx elm-test-rs --compiler lamdera)
(cd generator/review && npx elm-test-rs --compiler lamdera)
npm run test:snapshot
Expand Down

0 comments on commit d585e52

Please sign in to comment.