mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 09:04:01 +08:00
19 lines
395 B
YAML
19 lines
395 B
YAML
language: node_js
|
|
node_js:
|
|
- "6"
|
|
- "8"
|
|
- "10"
|
|
after_script:
|
|
- nyc report --reporter=text-lcov | coveralls
|
|
jobs:
|
|
include:
|
|
- stage: hosting functional test
|
|
if: repo == head_repo OR type == push
|
|
node_js: "6"
|
|
before_script: ./scripts/decrypt-app-credentials.sh
|
|
script: ./scripts/test-hosting.sh
|
|
after_script: skip
|
|
cache:
|
|
directories:
|
|
- node_modules
|