Administrator/.gitlab-ci.yml
2022-02-02 21:29:58 +01:00

26 lines
379 B
YAML

include:
- template: Security/SAST.gitlab-ci.yml
image: node:latest
cache:
paths:
- node_modules/
build:
stage: build
script:
- apt-get update && apt-get install -y python
- npm install
- npm run build
sast:
stage: test
artifacts:
name: sast
paths:
- gl-sast-report.json
reports:
sast: gl-sast-report.json
when: always