Skip to content

Commit

Permalink
Add GitLab CI pipeline (mulk/mulkcms2!4)
Browse files Browse the repository at this point in the history
  • Loading branch information
benkard committed Feb 4, 2023
2 parents 29fb1a3 + a311d39 commit 060ebc7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
stages:
- check

image: docker.io/library/maven:3-eclipse-temurin-19-alpine

verify:
stage: check
script:
- apk update
- apk add yarn
- mvn verify

sast:
stage: check

cache:
key: $CI_JOB_NAME
paths:
- .m2/repository
- src/main/resources/META-INF/resources/.parcel-cache
- src/main/resources/META-INF/resources/node_modules

variables:
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
MAVEN_CLI_OPTS: "--batch-mode --errors"

include:
- template: Security/SAST.gitlab-ci.yml

0 comments on commit 060ebc7

Please sign in to comment.