mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 05:50:43 -07:00
17 lines
317 B
YAML
17 lines
317 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "6"
|
|
- "4"
|
|
script: npm run lint && npm test
|
|
jobs:
|
|
include:
|
|
- stage: coverage
|
|
script: npm run coverage && npm run coveralls
|
|
- stage: release
|
|
if: branch = master
|
|
script: skip
|
|
deploy:
|
|
provider: script
|
|
script: npx semantic-release
|