mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-02-01 16:47:23 +00:00
24 lines
374 B
YAML
24 lines
374 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
|
|
jobs:
|
|
include:
|
|
- stage: lint
|
|
script: npm run lint
|
|
- stage: build
|
|
script: npm run build
|
|
- stage: test
|
|
node_js:
|
|
- "8"
|
|
- "lts/*"
|
|
- "node"
|
|
|
|
cache:
|
|
directories:
|
|
- "node_modules"
|
|
|
|
script: npm run test:infrastructure
|
|
|
|
|
|
# script: npm run test:services |