Skip to content

Instantly share code, notes, and snippets.

@mchelen
Created August 10, 2016 02:37
Show Gist options
  • Save mchelen/72ed1cfcefcbc2ee38c9ad24048cb3e3 to your computer and use it in GitHub Desktop.
Save mchelen/72ed1cfcefcbc2ee38c9ad24048cb3e3 to your computer and use it in GitHub Desktop.
image: node:4.4.7
services:
- postgres:9.5.3
before_script:
- npm install
all_tests:
script:
- npm test
after_script:
- npm run coverage
artifacts:
paths:
- coverage/
@mchelen
Copy link
Author

mchelen commented Aug 10, 2016

Error: Unknown parameter: artifacts

@mchelen
Copy link
Author

mchelen commented Aug 10, 2016

fixed:

image: node:4.4.7

services:
  - postgres:9.5.3

before_script:
  - npm install

all_tests:
  script:
   - npm test
   - npm run coverage
  artifacts:
    paths:
      - coverage/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment