Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MIME Normalizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
JS Toolbox
MIME Normalizer
Merge requests
!24
Add CI tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add CI tests
add-ci-tests
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Igor Markin
requested to merge
add-ci-tests
into
master
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bb5c2a1c
1 commit,
4 years ago
1 file
+
35
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
35
−
0
Options
image
:
node:12.22-alpine
include
:
-
template
:
'
Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
stages
:
-
install
-
test
install
:
stage
:
install
tags
:
-
amd64-docker
script
:
-
apk add --no-cache git openssh
-
git config --global url."https://gitlab-ci-token:$CI_JOB_TOKEN@code.vereign.com/".insteadOf "git@code.vereign.com:"
-
echo '[http "https://code.vereign.com"]' >> $HOME/.gitconfig
-
echo " sslVerify =
false
" >> $HOME/.gitconfig
-
yarn install --frozen-lockfile
cache
:
paths
:
-
node_modules/
artifacts
:
expire_in
:
1 days
when
:
on_success
paths
:
-
node_modules/
test
:
stage
:
test
tags
:
-
amd64-docker
dependencies
:
-
install
script
:
-
yarn test
Loading