2022-07-08 14:29:29 +00:00
|
|
|
dist: focal
|
2017-06-21 00:43:49 +00:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2018-12-21 20:01:12 +00:00
|
|
|
- "node" # Latest node version
|
|
|
|
- "lts/*" # Latest LTS version
|
2022-07-08 14:29:29 +00:00
|
|
|
- "16"
|
2021-05-11 19:48:34 +00:00
|
|
|
- "14"
|
2017-06-21 00:43:49 +00:00
|
|
|
|
2022-07-08 14:29:29 +00:00
|
|
|
before_install: npm i -g npm@8.5.5
|
2017-06-21 00:43:49 +00:00
|
|
|
|
|
|
|
script:
|
2020-05-20 13:35:04 +00:00
|
|
|
- npm run commitlint
|
2022-06-16 13:29:22 +00:00
|
|
|
- npm run standards
|
2017-06-21 00:43:49 +00:00
|
|
|
- npm test
|
|
|
|
|
|
|
|
# For code coverage:
|
|
|
|
after_success:
|
|
|
|
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
|