dynamicbible/.gitlab-ci.yml
2020-08-18 09:10:44 -04:00

41 lines
602 B
YAML

stages:
- report
- build
- test
report:
stage: report
image: node:14.5.0
script:
- npm install
- set +e
- npm outdated
- npm audit
- set -e
only:
- schedules
build:
stage: build
image: node:14.5.0
variables:
NODE_OPTIONS: "--max_old_space_size=2048"
script:
- cd ./src
- npm ci
- npm run-script lint
- npm run-script build
artifacts:
paths:
- dist
test:
stage: test
image: node:14.5.0
variables:
NODE_OPTIONS: "--max_old_space_size=2048"
script:
- cd ./src
- npm ci
- npm run-script test-headless