Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CloWM UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Commits
73882aa9
Verified
Commit
73882aa9
authored
2 years ago
by
Daniel Göbel
Browse files
Options
Downloads
Patches
Plain Diff
Add gitlab ci pipeline for lint check and building
parent
d4db4ede
No related branches found
No related tags found
1 merge request
!22
Version 1.0.0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+31
-0
31 additions, 0 deletions
.gitlab-ci.yml
with
31 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
31
−
0
View file @
73882aa9
image
:
node:16
cache
:
paths
:
-
dist
-
node_modules
stages
:
-
prepare
-
test
-
build
prepare
:
stage
:
prepare
script
:
-
npm install
lint
:
stage
:
test
needs
:
-
prepare
script
:
-
npm run lint
build
:
stage
:
build
needs
:
-
prepare
script
:
-
npm run build-only
artifacts
:
paths
:
-
dist
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