frontend/.pnpm-store/v3/files/b6/d8d6aac2586912b1e290e4356c649885d789f6dc6aa0b00cab7cbee7104ca9bf263f286013e049ea18ee52c644ccb4ff5e45689be7414932723fbd8829e8fc

11 lines
328 B
Plaintext

language: node_js
node_js:
- node
- lts/*
script:
- npm run lint
# test-coverage will also run the tests, but does not print helpful output upon test failure.
# So we also run the tests separately.
- npm run test
- npm run test-coverage && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage