mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
19 lines
365 B
YAML
19 lines
365 B
YAML
language: node_js
|
|
node_js:
|
|
- "10"
|
|
- "8"
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
name: 'Linting'
|
|
script: npm run lint
|
|
- name: 'Coverage'
|
|
script: npm run coverage-coveralls
|
|
- stage: release
|
|
if: branch = master
|
|
script: skip
|
|
deploy:
|
|
provider: script
|
|
skip_cleanup: true
|
|
script: npx semantic-release
|