Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SupportAdmin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
frontend
apps
SupportAdmin
Merge requests
!7
Product/1107 frontend performance
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Product/1107 frontend performance
Product/1107-frontendPerformance
into
master
Overview
0
Commits
4
Pipelines
3
Changes
9
Merged
Marcel Nellesen
requested to merge
Product/1107-frontendPerformance
into
master
4 years ago
Overview
0
Commits
4
Pipelines
3
Changes
9
Expand
coscine/issues#1107
0
0
Merge request reports
Compare
master
version 2
d7c26606
4 years ago
version 1
295fa27e
4 years ago
master (base)
and
latest version
latest version
44e8c6f8
4 commits,
4 years ago
version 2
d7c26606
3 commits,
4 years ago
version 1
295fa27e
2 commits,
4 years ago
9 files
+
15129
−
22700
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
15
−
49
Options
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/docker-runner.yml
-
/nodejs.yml
stages
:
-
test
-
build
# there are more stages in the imported file but we only want to import some
# - test
-
publish
-
release
-
pre_release
before_script
:
-
npm install
test
:
stage
:
test
script
:
-
npm run build
-
npm test
except
:
refs
:
-
master
-
tags
variables
:
-
$GITLAB_USER_ID == $GIT_BOT_USER_ID
publish
:
stage
:
publish
script
:
-
npm run build
-
npm test
-
npx semantic-release
only
:
-
master
except
:
variables
:
-
$GITLAB_USER_ID == $GIT_BOT_USER_ID
build-branch
:
extends
:
.build-branch
release
:
stage
:
release
script
:
-
npm run build
artifacts
:
paths
:
-
dist
only
:
-
tags
build-npm-release
:
extends
:
.build-npm-release
pre_release
:
stage
:
pre_release
script
:
-
npm run build
artifacts
:
paths
:
-
dist
when
:
manual
except
:
-
tags
-
master
publish-gitlab
:
extends
:
.publish-gitlab-release
Loading