Innopolis University DevOps Playground
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Quiz Web Engine
frontend
Commits
7aa4cce2
Commit
7aa4cce2
authored
1 year ago
by
evgeny
Browse files
Options
Downloads
Patches
Plain Diff
remove unnesessary config
parent
e7f0944e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2
Dev
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+29
-23
29 additions, 23 deletions
.gitlab-ci.yml
package.json
+3
-3
3 additions, 3 deletions
package.json
packages/quiz-passing/package.json
+1
-1
1 addition, 1 deletion
packages/quiz-passing/package.json
packages/visitor-portal/package.json
+1
-1
1 addition, 1 deletion
packages/visitor-portal/package.json
with
34 additions
and
28 deletions
.gitlab-ci.yml
+
29
−
23
View file @
7aa4cce2
...
...
@@ -10,32 +10,34 @@ cache:
paths
:
-
.yarn/cache
eslint
:
stage
:
lint
before_script
:
-
yarn install --frozen-lockfile
script
:
-
yarn lint:eslint
check format
:
stage
:
lint
before_script
:
-
yarn install --frozen-lockfile
script
:
-
yarn check:format
types
:
stage
:
lint
before_script
:
-
yarn install --frozen-lockfile
script
:
-
yarn lint:types
#
eslint:
#
stage: lint
#
before_script:
#
- yarn install --frozen-lockfile
#
script:
#
- yarn lint:eslint
#
#
check format:
#
stage: lint
#
before_script:
#
- yarn install --frozen-lockfile
#
script:
#
- yarn check:format
#
#
types:
#
stage: lint
#
before_script:
#
- yarn install --frozen-lockfile
#
script:
#
- yarn lint:types
build visitor-portal
:
stage
:
build
before_script
:
-
yarn install --frozen-lockfile
script
:
yarn build:visitor-portal
script
:
-
export VITE_BACKEND_URL=WWW_BACKEND
-
yarn build:production:visitor-portal
artifacts
:
when
:
always
paths
:
...
...
@@ -45,7 +47,9 @@ build quiz-passing:
stage
:
build
before_script
:
-
yarn install --frozen-lockfile
script
:
yarn build:quiz-passing
script
:
-
export VITE_BACKEND_URL=WWW_BACKEND
-
yarn build:production:quiz-passing
artifacts
:
when
:
always
paths
:
...
...
@@ -55,7 +59,9 @@ build dashboard:
stage
:
build
before_script
:
-
yarn install --frozen-lockfile
script
:
yarn build:dashboard
script
:
-
export VITE_BACKEND_URL=WWW_BACKEND
-
yarn build:production:dashboard
artifacts
:
when
:
always
paths
:
...
...
This diff is collapsed.
Click to expand it.
package.json
+
3
−
3
View file @
7aa4cce2
...
...
@@ -10,9 +10,9 @@
"lint:types:dashboard"
:
"yarn workspace @quiz-web-engine/dashboard lint:types"
,
"lint:types"
:
"yarn run lint:types:quiz-passing && yarn run lint:types:visitor-portal && yarn run lint:types:dashboard"
,
"lint:format"
:
"prettier packages/* --write"
,
"build:visitor-portal"
:
"yarn workspace @quiz-web-engine/visitor-portal build"
,
"build:quiz-passing"
:
"yarn workspace @quiz-web-engine/quiz-passing build"
,
"build:dashboard"
:
"yarn workspace @quiz-web-engine/dashboard build"
,
"build:
production:
visitor-portal"
:
"yarn workspace @quiz-web-engine/visitor-portal build
:production
"
,
"build:
production:
quiz-passing"
:
"yarn workspace @quiz-web-engine/quiz-passing build
:production
"
,
"build:
production:
dashboard"
:
"yarn workspace @quiz-web-engine/dashboard build
:production
"
,
"dev"
:
"concurrently
\"
yarn workspace @quiz-web-engine/visitor-portal dev
\"
\"
yarn workspace @quiz-web-engine/dashboard dev
\"
\"
yarn workspace @quiz-web-engine/quiz-passing dev
\"
"
},
"workspaces"
:
[
...
...
This diff is collapsed.
Click to expand it.
packages/quiz-passing/package.json
+
1
−
1
View file @
7aa4cce2
...
...
@@ -5,7 +5,7 @@
"type"
:
"module"
,
"scripts"
:
{
"dev"
:
"dotenv -e ../../.env.development.local -- vite"
,
"build"
:
"vite build"
,
"build
:production
"
:
"vite build"
,
"lint:types"
:
"tsc"
,
"lint:eslint"
:
"eslint . --ext ts,tsx --max-warnings 0"
,
"preview"
:
"vite preview"
...
...
This diff is collapsed.
Click to expand it.
packages/visitor-portal/package.json
+
1
−
1
View file @
7aa4cce2
...
...
@@ -5,7 +5,7 @@
"type"
:
"module"
,
"scripts"
:
{
"dev"
:
"dotenv -e ../../.env.development.local -- vite"
,
"build"
:
"vite build"
,
"build
:production
"
:
"vite build"
,
"lint:types"
:
"tsc"
,
"lint:eslint"
:
"eslint . --ext ts,tsx --max-warnings 0"
,
"preview"
:
"vite preview"
...
...
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