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
Compare revisions
35e53a7ecfd37da2aabbbbe8357901e1baea3606 to acf34e17cbe4e0e17dc8b87ecede55625596db92
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
tddd96-grupp11/teknikattan-scoring-system
Select target project
No results found
acf34e17cbe4e0e17dc8b87ecede55625596db92
Select Git revision
Branches
dev
master
Swap
Target
tddd96-grupp11/teknikattan-scoring-system
Select target project
tddd96-grupp11/teknikattan-scoring-system
1 result
35e53a7ecfd37da2aabbbbe8357901e1baea3606
Select Git revision
Branches
dev
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
fix: Fix broken coverage badge from last commit
· 0e286ff2
Victor Löfgren
authored
4 years ago
0e286ff2
config: Only run tests on merge or dev and run only when needed
· 4159bf08
Victor Löfgren
authored
4 years ago
4159bf08
fix: Run client pipeline only when client code is changed
· acf34e17
Victor Löfgren
authored
4 years ago
acf34e17
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab/client.gitlab-ci.yml
+18
-1
18 additions, 1 deletion
.gitlab/client.gitlab-ci.yml
.gitlab/server.gitlab-ci.yml
+12
-0
12 additions, 0 deletions
.gitlab/server.gitlab-ci.yml
README.md
+2
-2
2 additions, 2 deletions
README.md
with
32 additions
and
3 deletions
.gitlab/client.gitlab-ci.yml
View file @
acf34e17
client:setup
:
image
:
node:10
stage
:
setup
only
:
refs
:
-
dev
-
merge_requests
changes
:
-
client/**/*
script
:
-
cd client
-
npm install
...
...
@@ -21,6 +27,12 @@ client:linting:
image
:
node:10
stage
:
test
needs
:
[
"
client:setup"
]
only
:
refs
:
-
dev
-
merge_requests
changes
:
-
client/**/*
script
:
-
cd client
-
npm run lint
...
...
@@ -29,8 +41,13 @@ client:test:
image
:
node:10
stage
:
test
needs
:
[
"
client:setup"
]
only
:
refs
:
-
dev
-
merge_requests
changes
:
-
client/**/*
script
:
-
cd client
-
npm run test:coverage
coverage
:
/All files\s*\|\s*([\d\.]+)/
This diff is collapsed.
Click to expand it.
.gitlab/server.gitlab-ci.yml
View file @
acf34e17
server:setup
:
image
:
python
stage
:
setup
only
:
refs
:
-
dev
-
merge_requests
changes
:
-
server/**/*
artifacts
:
paths
:
-
server/env
...
...
@@ -22,6 +28,12 @@ server:test:
image
:
python
stage
:
test
needs
:
[
"
server:setup"
]
only
:
refs
:
-
dev
-
merge_requests
changes
:
-
server/**/*
script
:
-
cd server
-
source env/bin/activate
...
...
This diff is collapsed.
Click to expand it.
README.md
View file @
acf34e17




# Scoring system for Teknikåttan
...
...
This diff is collapsed.
Click to expand it.