resource-watch/graph-client

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: node_js
dist: focal
services:
  - neo4j
node_js:
  - "20.4"
cache:
  directories:
  - "node_modules"
env:
  global:
    - CC_TEST_REPORTER_ID=d7f159d23c9f5383ddb36476a4624bb103e6080e2fadd29ca4c09eaa0c821d70
    - NODE_ENV=test
    - PORT=5037
    - LOCAL_URL=http://127.0.0.1:3001
    - GATEWAY_URL=http://127.0.0.1:9000
    - MICROSERVICE_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6Im1pY3Jvc2VydmljZSIsImNyZWF0ZWRBdCI6IjIwMTYtMDktMTQifQ.IRCIRm1nfIQTfda_Wb6Pg-341zhV8soAgzw7dd5HxxQ
    - NEO4J_URI=bolt://localhost:7687
    - NEO4J_USER=
    - NEO4J_PASSWORD=
    - FASTLY_ENABLED=false
    - AWS_REGION=us-east-1
    - AWS_ACCESS_KEY_ID=test
    - AWS_SECRET_ACCESS_KEY=test

before_script:
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
  - chmod +x ./cc-test-reporter
  - ./cc-test-reporter before-build
script:
  - yarn test
  - yarn run coverage
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT