Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
teknikattan-scoring-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Show more breadcrumbs
tddd96-grupp1
teknikattan-scoring-system
Commits
b1d7e88d
Commit
b1d7e88d
authored
4 years ago
by
Albin Henriksson
Browse files
Options
Downloads
Patches
Plain Diff
#2
add .gitlab-ci.yml file
parent
9218c8f2
No related branches found
Branches containing commit
No related tags found
2 merge requests
!8
Issue/2 test front end
,
!6
Issue/2 test front end
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+58
-0
58 additions, 0 deletions
.gitlab-ci.yml
with
58 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
58
−
0
View file @
b1d7e88d
image
:
node:10
stages
:
-
install
-
build
-
quality
install
:
stage
:
install
script
:
-
npm install
artifacts
:
name
:
"
artifacts"
untracked
:
true
expire_in
:
60 mins
paths
:
-
.npm/
-
node_modules/
build
:
stage
:
build
script
:
-
CI=false npm run build
artifacts
:
paths
:
-
build
expire_in
:
60 mins
dependencies
:
-
install
linting
:
stage
:
quality
script
:
-
npm run lint
dependencies
:
-
install
test:unit
:
stage
:
quality
script
:
-
npm run test:coverage
dependencies
:
-
install
coverage
:
/All files[^|]*\|[^|]*\s+([\d\.]+)/
test:e2e
:
stage
:
quality
image
:
cypress/browsers:chrome69
dependencies
:
-
install
-
build
script
:
-
npm run e2e:ci
artifacts
:
paths
:
-
cypress/screenshots
-
cypress/videos
expire_in
:
1 day
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