Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MIME Normalizer
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
Commits
bb5c2a1c
Commit
bb5c2a1c
authored
3 years ago
by
Igor Markin
Browse files
Options
Downloads
Patches
Plain Diff
Adds .gitlab-ci.yml
parent
42c603ed
No related branches found
No related tags found
1 merge request
!24
Add CI tests
Pipeline
#41843
passed with stages
in 1 minute and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+35
-0
35 additions, 0 deletions
.gitlab-ci.yml
with
35 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
35
−
0
View file @
bb5c2a1c
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment