-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
56 lines (54 loc) · 1.89 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# You can override the included template(s) by including variable overrides
# SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
# Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
# Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
# Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
# Note that environment variables can be set in several places
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
cache:
paths:
- node_modules/
- '.yarn'
before_script:
- apt-get update -qq && apt-get install
stages:
- unit-test
- test
unit-test:
stage: unit-test
image: node:18
tags:
- cicd
- test
- tincre
before_script:
- yarn config set cache-folder .yarn
- yarn install --frozen-lockfile
script:
- yarn run test --ci --coverage --maxWorkers=2
sast:
cache: {}
stage: test
image: ubuntu:latest
tags:
- cicd
- tincre
include:
- template: Security/SAST.gitlab-ci.yml
semgrep-report:
image: returntocorp/semgrep-agent:v1
tags:
- cicd
script:
# SEMGREP_APP_TOKEN can be obtained from semgrep.dev/manage/settings.
# The SEMGREP_APP_TOKEN should be treated like a secret and not hard-coded into your code.
- semgrep-agent --publish-token $SEMGREP_APP_TOKEN
rules:
# Scan changed files in MRs, block on new issues only (existing issues ignored)
- if: $CI_MERGE_REQUEST_IID
# Scan all files on default branch, block on any issues
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
variables:
SEMGREP_AGENT_DEBUG: 1
# Gives Semgrep permission to post inline comments
GITLAB_TOKEN: $PAT