You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.drone.yml 177 B

1234567891011121314
  1. pipeline:
  2. build:
  3. image: node:${NODE_VERSION}
  4. commands:
  5. - npm install
  6. - npm run test
  7. matrix:
  8. NODE_VERSION:
  9. - latest
  10. - "8"
  11. - "7"
  12. - "6"
  13. - "4"